diff options
author | Yuval Pavel Zholkover <paulzhol@gmail.com> | 2019-01-08 00:54:58 +0200 |
---|---|---|
committer | Brad Fitzpatrick <bradfitz@golang.org> | 2019-01-08 00:35:16 +0000 |
commit | e3eb2ff8270a3d0f542808136519a044f39c50d9 (patch) | |
tree | f38252828d852f599194b13d5eefd85e440cd25b /src/runtime | |
parent | 5a0743b020d3bf7875edd5ed50c9ee69d728e10e (diff) | |
download | go-git-e3eb2ff8270a3d0f542808136519a044f39c50d9.tar.gz |
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 <iant@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/runtime')
-rw-r--r-- | src/runtime/runtime-gdb_test.go | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/runtime/runtime-gdb_test.go b/src/runtime/runtime-gdb_test.go index 442ee9ca81..a988d1d702 100644 --- a/src/runtime/runtime-gdb_test.go +++ b/src/runtime/runtime-gdb_test.go @@ -39,9 +39,7 @@ func checkGdbEnvironment(t *testing.T) { case "aix": t.Skip("gdb does not work on AIX; see https://golang.org/issue/28558") case "freebsd": - if runtime.GOARCH == "arm" { - t.Skip("skipping gdb tests on freebsd/arm; see https://golang.org/issue/29508") - } + t.Skip("skipping gdb tests on FreeBSD; see https://golang.org/issue/29508") } if final := os.Getenv("GOROOT_FINAL"); final != "" && runtime.GOROOT() != final { t.Skip("gdb test can fail with GOROOT_FINAL pending") |