Skip flaky TestCrashDumpsAllThreads on mips64le
authorShengjing Zhu <zhsj@debian.org>
Mon, 26 Feb 2024 09:03:06 +0000 (17:03 +0800)
committerShengjing Zhu <zhsj@debian.org>
Mon, 26 Feb 2024 09:13:31 +0000 (17:13 +0800)
crash_unix_test.go:145: found 3 instances of main.crashDumpsAllThreadsLoop; expected 4

Gbp-Pq: Name 0001-Skip-flaky-TestCrashDumpsAllThreads-on-mips64le.patch

src/runtime/crash_unix_test.go

index 8d205e1de5389d1ff7309cb907483c272f66ac11..9a01d89ba4e3a8359bd806b7585b924972d0906a 100644 (file)
@@ -59,6 +59,10 @@ func TestCrashDumpsAllThreads(t *testing.T) {
                t.Skip("-quick")
        }
 
+       if runtime.GOARCH == "mips64le" {
+               t.Skipf("skipping; flaky on %s", runtime.GOARCH)
+       }
+
        switch runtime.GOOS {
        case "darwin", "dragonfly", "freebsd", "linux", "netbsd", "openbsd", "illumos", "solaris":
        default: