1
0
mirror of https://github.com/golang/go synced 2024-09-23 15:20:13 -06:00

misc/cgo/test: skip test18146 on mips{,64}

Change-Id: I724f4443fc10a6ee0d027a9533f07aba39455cfa
Reviewed-on: https://go-review.googlesource.com/34312
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Vladimir Stefanovic 2016-12-13 19:49:41 +01:00 committed by Brad Fitzpatrick
parent 48b42d29dc
commit 990cda59f8

View File

@ -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