]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: disable TestCrashDumpsAllThreads on openbsd/mips64
authorJoel Sing <joel@sing.id.au>
Mon, 9 Nov 2020 16:42:18 +0000 (03:42 +1100)
committerJoel Sing <joel@sing.id.au>
Mon, 9 Nov 2020 16:56:37 +0000 (16:56 +0000)
This test fails consistently on openbsd/mips64 - disable it until we can investigate
and resolve the issue.

Updates #42464

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

index fc87f374088868a5728d467fa3fd660eb71869cb..6c42cb9a3dfaff3708d876f76a9da5d448d0434c 100644 (file)
@@ -70,6 +70,10 @@ func TestCrashDumpsAllThreads(t *testing.T) {
                t.Skipf("skipping; not supported on %v", runtime.GOOS)
        }
 
+       if runtime.GOOS == "openbsd" && runtime.GOARCH == "mips64" {
+               t.Skipf("skipping; test fails on %s/%s - see issue #42464", runtime.GOOS, runtime.GOARCH)
+       }
+
        if runtime.Sigisblocked(int(syscall.SIGQUIT)) {
                t.Skip("skipping; SIGQUIT is blocked, see golang.org/issue/19196")
        }