Skip to content

Commit e3eb2ff

Browse files
paulzholbradfitz
authored andcommitted
runtime: disable GDB tests on freebsd on all GOARCH values
The in-tree GDB is too old (6.1.1) on all the builders except the FreeBSD 12.0 one, where it was removed from the base system. Update #29508 Change-Id: Ib6091cd86440ea005f3f903549a0223a96621a6f Reviewed-on: https://go-review.googlesource.com/c/156717 Reviewed-by: Ian Lance Taylor <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]> Run-TryBot: Ian Lance Taylor <[email protected]> TryBot-Result: Gobot Gobot <[email protected]>
1 parent 5a0743b commit e3eb2ff

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/runtime/runtime-gdb_test.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@ func checkGdbEnvironment(t *testing.T) {
3939
case "aix":
4040
t.Skip("gdb does not work on AIX; see https://golang.org/issue/28558")
4141
case "freebsd":
42-
if runtime.GOARCH == "arm" {
43-
t.Skip("skipping gdb tests on freebsd/arm; see https://golang.org/issue/29508")
44-
}
42+
t.Skip("skipping gdb tests on FreeBSD; see https://golang.org/issue/29508")
4543
}
4644
if final := os.Getenv("GOROOT_FINAL"); final != "" && runtime.GOROOT() != final {
4745
t.Skip("gdb test can fail with GOROOT_FINAL pending")

0 commit comments

Comments
 (0)