aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime-gdb_test.go
diff options
context:
space:
mode:
authorShulhan <m.shulhan@gmail.com>2018-09-13 01:46:39 +0700
committerIan Lance Taylor <iant@golang.org>2018-10-01 19:21:42 +0000
commita9c69e0a657cbbdd4df3a77bd202b7f03a104094 (patch)
treed2f7d5a4ab0fae5ad940a566a257c9085955803e /src/runtime/runtime-gdb_test.go
parentb57ccdf992b46b15c33cf4672de4a7911d667617 (diff)
downloadgo-a9c69e0a657cbbdd4df3a77bd202b7f03a104094.tar.gz
go-a9c69e0a657cbbdd4df3a77bd202b7f03a104094.zip
runtime: fix runtime gdb test with gdb v8.2
Previously, some of output from gdb matched with literal string, while gdb v8.2 print the address of variable (e.g. map key and value) in output. This commit fix the regex in testing the output. Fixes #27608 Change-Id: Ic3fe8280b9f93fda2799116804822616caa66beb Reviewed-on: https://go-review.googlesource.com/135055 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: David Chase <drchase@google.com>
Diffstat (limited to 'src/runtime/runtime-gdb_test.go')
-rw-r--r--src/runtime/runtime-gdb_test.go23
1 files changed, 13 insertions, 10 deletions
diff --git a/src/runtime/runtime-gdb_test.go b/src/runtime/runtime-gdb_test.go
index 26f507159b..0c24d3dce6 100644
--- a/src/runtime/runtime-gdb_test.go
+++ b/src/runtime/runtime-gdb_test.go
@@ -242,14 +242,14 @@ func testGdbPython(t *testing.T, cgo bool) {
t.Fatalf("info goroutines failed: %s", bl)
}
- printMapvarRe1 := regexp.MustCompile(`\Q = map[string]string = {["abc"] = "def", ["ghi"] = "jkl"}\E$`)
- printMapvarRe2 := regexp.MustCompile(`\Q = map[string]string = {["ghi"] = "jkl", ["abc"] = "def"}\E$`)
+ printMapvarRe1 := regexp.MustCompile(`^\$[0-9]+ = map\[string\]string = {\[(0x[0-9a-f]+\s+)?"abc"\] = (0x[0-9a-f]+\s+)?"def", \[(0x[0-9a-f]+\s+)?"ghi"\] = (0x[0-9a-f]+\s+)?"jkl"}$`)
+ printMapvarRe2 := regexp.MustCompile(`^\$[0-9]+ = map\[string\]string = {\[(0x[0-9a-f]+\s+)?"ghi"\] = (0x[0-9a-f]+\s+)?"jkl", \[(0x[0-9a-f]+\s+)?"abc"\] = (0x[0-9a-f]+\s+)?"def"}$`)
if bl := blocks["print mapvar"]; !printMapvarRe1.MatchString(bl) &&
!printMapvarRe2.MatchString(bl) {
t.Fatalf("print mapvar failed: %s", bl)
}
- strVarRe := regexp.MustCompile(`\Q = "abc"\E$`)
+ strVarRe := regexp.MustCompile(`^\$[0-9]+ = (0x[0-9a-f]+\s+)?"abc"$`)
if bl := blocks["print strvar"]; !strVarRe.MatchString(bl) {
t.Fatalf("print strvar failed: %s", bl)
}
@@ -263,8 +263,11 @@ func testGdbPython(t *testing.T, cgo bool) {
// aggregates from their fields and reverted their printing
// back to its original form.
- infoLocalsRe := regexp.MustCompile(`slicevar *= *\[\]string *= *{"def"}`)
- if bl := blocks["info locals"]; !infoLocalsRe.MatchString(bl) {
+ infoLocalsRe1 := regexp.MustCompile(`slicevar *= *\[\]string *= *{"def"}`)
+ // Format output from gdb v8.2
+ infoLocalsRe2 := regexp.MustCompile(`^slicevar = .*\nmapvar = .*\nstrvar = 0x[0-9a-f]+ "abc"`)
+ if bl := blocks["info locals"]; !infoLocalsRe1.MatchString(bl) &&
+ !infoLocalsRe2.MatchString(bl) {
t.Fatalf("info locals failed: %s", bl)
}
@@ -425,11 +428,11 @@ func TestGdbAutotmpTypes(t *testing.T) {
// Check that the backtrace matches the source code.
types := []string{
- "struct []main.astruct;",
- "struct bucket<string,main.astruct>;",
- "struct hash<string,main.astruct>;",
- "struct main.astruct;",
- "typedef struct hash<string,main.astruct> * map[string]main.astruct;",
+ "[]main.astruct;",
+ "bucket<string,main.astruct>;",
+ "hash<string,main.astruct>;",
+ "main.astruct;",
+ "hash<string,main.astruct> * map[string]main.astruct;",
}
for _, name := range types {
if !strings.Contains(sgot, name) {