From: Dave Cheney Date: Wed, 25 Feb 2015 20:48:50 +0000 (+1100) Subject: runtime: skip failing gdb test on linux/arm X-Git-Tag: go1.5beta1~1868 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c1216c3a335894c86d9eb2fe3005b171619e2bc3;p=gostls13.git runtime: skip failing gdb test on linux/arm Updates #10002 The gdb test added in 1c82e236f5ee is failing on most arm systems. Temporarily disable this test so that we can return to a working arm build. Change-Id: Iff96ea8d5a99e1ceacf4979e864ff196e5503535 Reviewed-on: https://go-review.googlesource.com/5902 Reviewed-by: Ian Lance Taylor --- diff --git a/src/runtime/runtime-gdb_test.go b/src/runtime/runtime-gdb_test.go index 1668f8b1bb..da15835db0 100644 --- a/src/runtime/runtime-gdb_test.go +++ b/src/runtime/runtime-gdb_test.go @@ -43,6 +43,10 @@ func TestGdbPython(t *testing.T) { t.Skip("gdb does not work on darwin") } + if runtime.GOOS == "linux" && runtime.GOARCH == "arm" { + t.Skip("issue 10002") + } + checkGdbPython(t) dir, err := ioutil.TempDir("", "go-build")