]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: skip TestCrashDumpsAllThreads on openbsd/arm
authorJoel Sing <joel@sing.id.au>
Wed, 17 Feb 2021 06:12:03 +0000 (17:12 +1100)
committerJoel Sing <joel@sing.id.au>
Sun, 9 May 2021 17:07:22 +0000 (17:07 +0000)
This test is also now flakey on this platform.

Updates #36435
Updates #42464

Change-Id: Idedb81478178ffffe7a9c125a6e8bbd83458f9ab
Reviewed-on: https://go-review.googlesource.com/c/go/+/315794
Trust: Joel Sing <joel@sing.id.au>
Reviewed-by: Cherry Mui <cherryyz@google.com>
src/runtime/crash_unix_test.go

index 9469d5e6a649508fe09fc5e1e32e68c52c6c44a7..694cc3d138b73e42640b23f31785f8f67f005200 100644 (file)
@@ -69,7 +69,8 @@ func TestCrashDumpsAllThreads(t *testing.T) {
                t.Skipf("skipping; not supported on %v", runtime.GOOS)
        }
 
-       if runtime.GOOS == "openbsd" && runtime.GOARCH == "mips64" {
+       if runtime.GOOS == "openbsd" && (runtime.GOARCH == "arm" || runtime.GOARCH == "mips64") {
+               // This may be ncpu < 2 related...
                t.Skipf("skipping; test fails on %s/%s - see issue #42464", runtime.GOOS, runtime.GOARCH)
        }