Skip to content

Commit 1f035d0

Browse files
committed
runtime: disable GDB tests on freebsd/arm for now
Updates #29508 Updates #28679 Change-Id: I19bc9f88aeb2b1f3e69856173a00c5a4d5ed3613 Reviewed-on: https://go-review.googlesource.com/c/155932 Run-TryBot: Brad Fitzpatrick <[email protected]> Reviewed-by: Katie Hockman <[email protected]>
1 parent 2175177 commit 1f035d0

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/runtime/runtime-gdb_test.go

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,18 +26,22 @@ func checkGdbEnvironment(t *testing.T) {
2626
case "darwin":
2727
t.Skip("gdb does not work on darwin")
2828
case "netbsd":
29-
t.Skip("gdb does not work with threads on NetBSD; see golang.org/issue/22893 and gnats.netbsd.org/52548")
29+
t.Skip("gdb does not work with threads on NetBSD; see https://golang.org/issue/22893 and https://gnats.netbsd.org/52548")
3030
case "windows":
3131
t.Skip("gdb tests fail on Windows: https://golang.org/issue/22687")
3232
case "linux":
3333
if runtime.GOARCH == "ppc64" {
34-
t.Skip("skipping gdb tests on linux/ppc64; see golang.org/issue/17366")
34+
t.Skip("skipping gdb tests on linux/ppc64; see https://golang.org/issue/17366")
3535
}
3636
if runtime.GOARCH == "mips" {
3737
t.Skip("skipping gdb tests on linux/mips; see https://golang.org/issue/25939")
3838
}
3939
case "aix":
40-
t.Skip("gdb does not work on AIX; see golang.org/issue/28558")
40+
t.Skip("gdb does not work on AIX; see https://golang.org/issue/28558")
41+
case "freebsd":
42+
if runtime.GOARCH == "arm" {
43+
t.Skip("skipping gdb tests on freebsd/arm; see https://golang.org/issue/29508")
44+
}
4145
}
4246
if final := os.Getenv("GOROOT_FINAL"); final != "" && runtime.GOROOT() != final {
4347
t.Skip("gdb test can fail with GOROOT_FINAL pending")

0 commit comments

Comments
 (0)