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>
Tue, 4 Jun 2024 23:29:58 +0000 (07:29 +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 cc60bfb7dd04859a7eb9ad930f6212d64b27a8dc..679bccce0ed050a8c09e3288f79023bad4484434 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: