aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/crash_cgo_test.go
diff options
context:
space:
mode:
authorCherry Zhang <cherryyz@google.com>2016-05-04 22:07:50 -0700
committerCherry Zhang <cherryyz@google.com>2016-05-05 14:58:14 +0000
commitbcd4b84bc56889b5a9a8a5d457f35fc0188e8315 (patch)
tree94f94808eb04eab32c8198b59061536683340310 /src/runtime/crash_cgo_test.go
parent3c4ebd20235e965237f5856d30d6ce6513b9f6c9 (diff)
downloadgo-bcd4b84bc56889b5a9a8a5d457f35fc0188e8315.tar.gz
go-bcd4b84bc56889b5a9a8a5d457f35fc0188e8315.zip
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 <minux@golang.org> Run-TryBot: Minux Ma <minux@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
Diffstat (limited to 'src/runtime/crash_cgo_test.go')
-rw-r--r--src/runtime/crash_cgo_test.go2
1 files changed, 2 insertions, 0 deletions
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")