From: Bryan C. Mills Date: Thu, 16 Dec 2021 15:40:47 +0000 (-0500) Subject: os/exec: skip TestContextCancel on netbsd/arm64 X-Git-Tag: go1.18beta2~212 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=63077bfcf563e3f2ef96fa51203ed2fad71a371c;p=gostls13.git 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 Run-TryBot: Bryan Mills TryBot-Result: Gopher Robot Reviewed-by: Ian Lance Taylor --- diff --git a/src/os/exec/exec_test.go b/src/os/exec/exec_test.go index 92992a6d66..73aa35f1ae 100644 --- a/src/os/exec/exec_test.go +++ b/src/os/exec/exec_test.go @@ -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()