Skip to content

Commit 63077bf

Browse files
author
Bryan C. Mills
committed
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>
1 parent 2e6e9df commit 63077bf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/os/exec/exec_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -954,6 +954,10 @@ func TestContext(t *testing.T) {
954954
}
955955

956956
func TestContextCancel(t *testing.T) {
957+
if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm64" {
958+
testenv.SkipFlaky(t, 42061)
959+
}
960+
957961
// To reduce noise in the final goroutine dump,
958962
// let other parallel tests complete if possible.
959963
t.Parallel()

0 commit comments

Comments
 (0)