From 63077bfcf563e3f2ef96fa51203ed2fad71a371c Mon Sep 17 00:00:00 2001 From: "Bryan C. Mills" Date: Thu, 16 Dec 2021 10:40:47 -0500 Subject: [PATCH] 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 --- src/os/exec/exec_test.go | 4 ++++ 1 file changed, 4 insertions(+) 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() -- 2.50.0