]> Cypherpunks repositories - gostls13.git/commitdiff
os/exec: skip TestContextCancel on netbsd/arm64
authorBryan C. Mills <bcmills@google.com>
Thu, 16 Dec 2021 15:40:47 +0000 (10:40 -0500)
committerBryan Mills <bcmills@google.com>
Fri, 17 Dec 2021 01:59:32 +0000 (01:59 +0000)
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>
src/os/exec/exec_test.go

index 92992a6d664a6a3b61016a1b03f678e737a14445..73aa35f1aed1fce2dd0b002a039632043c660350 100644 (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()