mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
runtime: skip TestCrashDumpsAllThreads on openbsd/arm
This test is also now flakey on this platform. Updates #36435 Updates #42464 Change-Id: Idedb81478178ffffe7a9c125a6e8bbd83458f9ab Reviewed-on: https://go-review.googlesource.com/c/go/+/315794 Trust: Joel Sing <joel@sing.id.au> Reviewed-by: Cherry Mui <cherryyz@google.com>
This commit is contained in:
parent
bedf2c4886
commit
c14ecaca81
1 changed files with 2 additions and 1 deletions
|
|
@ -69,7 +69,8 @@ func TestCrashDumpsAllThreads(t *testing.T) {
|
||||||
t.Skipf("skipping; not supported on %v", runtime.GOOS)
|
t.Skipf("skipping; not supported on %v", runtime.GOOS)
|
||||||
}
|
}
|
||||||
|
|
||||||
if runtime.GOOS == "openbsd" && runtime.GOARCH == "mips64" {
|
if runtime.GOOS == "openbsd" && (runtime.GOARCH == "arm" || runtime.GOARCH == "mips64") {
|
||||||
|
// This may be ncpu < 2 related...
|
||||||
t.Skipf("skipping; test fails on %s/%s - see issue #42464", runtime.GOOS, runtime.GOARCH)
|
t.Skipf("skipping; test fails on %s/%s - see issue #42464", runtime.GOOS, runtime.GOARCH)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue