From: Shengjing Zhu Date: Mon, 26 Feb 2024 09:03:06 +0000 (+0800) Subject: Skip flaky TestCrashDumpsAllThreads on mips64le X-Git-Tag: archive/raspbian/1.21.10-1+rpi1^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=5260b32d40a24ef44393530cc0bf3272ae9d2260;p=golang-1.21.git Skip flaky TestCrashDumpsAllThreads on mips64le crash_unix_test.go:145: found 3 instances of main.crashDumpsAllThreadsLoop; expected 4 Gbp-Pq: Name 0001-Skip-flaky-TestCrashDumpsAllThreads-on-mips64le.patch --- diff --git a/src/runtime/crash_unix_test.go b/src/runtime/crash_unix_test.go index cc60bfb7..679bccce 100644 --- a/src/runtime/crash_unix_test.go +++ b/src/runtime/crash_unix_test.go @@ -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: