1
0
mirror of https://github.com/golang/go synced 2024-11-12 01:00:22 -07:00

os/exec: skip TestContextCancel on netbsd/arm64

For #42061

Change-Id: I3b4c774ad9e375d4bfef1cfb4336c35ed30a6430
Reviewed-on: https://go-review.googlesource.com/c/go/+/372795
Trust: Bryan Mills <bcmills@google.com>
Run-TryBot: Bryan Mills <bcmills@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Bryan C. Mills 2021-12-16 10:40:47 -05:00 committed by Bryan Mills
parent 2e6e9df2c1
commit 63077bfcf5

View File

@ -954,6 +954,10 @@ func TestContext(t *testing.T) {
}
func TestContextCancel(t *testing.T) {
if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm64" {
testenv.SkipFlaky(t, 42061)
}
// To reduce noise in the final goroutine dump,
// let other parallel tests complete if possible.
t.Parallel()