From 990cda59f8bba7f67fa37f9b5be0e384adf20b41 Mon Sep 17 00:00:00 2001 From: Vladimir Stefanovic Date: Tue, 13 Dec 2016 19:49:41 +0100 Subject: [PATCH] misc/cgo/test: skip test18146 on mips{,64} Change-Id: I724f4443fc10a6ee0d027a9533f07aba39455cfa Reviewed-on: https://go-review.googlesource.com/34312 Reviewed-by: Brad Fitzpatrick Run-TryBot: Brad Fitzpatrick TryBot-Result: Gobot Gobot --- misc/cgo/test/issue18146.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/misc/cgo/test/issue18146.go b/misc/cgo/test/issue18146.go index 37219980f0..19c52b6fd5 100644 --- a/misc/cgo/test/issue18146.go +++ b/misc/cgo/test/issue18146.go @@ -26,6 +26,10 @@ func test18146(t *testing.T) { t.Skipf("skipping flaky test on %s; see golang.org/issue/18202", runtime.GOOS) } + if runtime.GOARCH == "mips" || runtime.GOARCH == "mips64" { + t.Skipf("skipping on %s", runtime.GOARCH) + } + attempts := 1000 threads := 4