From: Cherry Zhang Date: Thu, 5 May 2016 05:07:50 +0000 (-0700) Subject: runtime: skip TestCgoCallbackGC on linux/mips64x X-Git-Tag: go1.7beta1~327 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=bcd4b84bc56889b5a9a8a5d457f35fc0188e8315;p=gostls13.git runtime: skip TestCgoCallbackGC on linux/mips64x Builder is too slow. This test passed on builder machines but took 15+ min. Change-Id: Ief9d67ea47671a57e954e402751043bc1ce09451 Reviewed-on: https://go-review.googlesource.com/22798 Reviewed-by: Minux Ma Run-TryBot: Minux Ma TryBot-Result: Gobot Gobot --- diff --git a/src/runtime/crash_cgo_test.go b/src/runtime/crash_cgo_test.go index c34c629b9c..5d1cc77c98 100644 --- a/src/runtime/crash_cgo_test.go +++ b/src/runtime/crash_cgo_test.go @@ -51,6 +51,8 @@ func TestCgoCallbackGC(t *testing.T) { t.Skip("see golang.org/issue/11990") case runtime.GOOS == "linux" && runtime.GOARCH == "arm": t.Skip("too slow for arm builders") + case runtime.GOOS == "linux" && (runtime.GOARCH == "mips64" || runtime.GOARCH == "mips64le"): + t.Skip("too slow for mips64x builders") } } got := runTestProg(t, "testprogcgo", "CgoCallbackGC")