From ac91b4f7eaa87d1192b3c4a2c79bc2c41f888ead Mon Sep 17 00:00:00 2001 From: Shengjing Zhu Date: Mon, 26 Feb 2024 17:03:06 +0800 Subject: [PATCH] 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 --- src/runtime/crash_unix_test.go | 4 ++++ 1 file changed, 4 insertions(+) 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: -- 2.30.2