Skip to content

Commit 534a911

Browse files
dmitshurgopherbot
authored andcommitted
runtime: skip TestNoShrinkStackWhileParking on openbsd
The test has proven to be flaky on OpenBSD since March, and there hasn't been progress on resolving this finding. Mark the test as flaky to so that this problem doesn't block the Go 1.19 release. Updates #51482. Change-Id: I92ad7498c20cfa94565880363bec85f9a4f3e916 Reviewed-on: https://go-review.googlesource.com/c/go/+/401335 Run-TryBot: Dmitri Shuralyov <[email protected]> Auto-Submit: Dmitri Shuralyov <[email protected]> Reviewed-by: Dmitri Shuralyov <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Bryan Mills <[email protected]> Reviewed-by: Michael Pratt <[email protected]>
1 parent 3227501 commit 534a911

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/runtime/chan_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -629,6 +629,9 @@ func TestNoShrinkStackWhileParking(t *testing.T) {
629629
if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm64" {
630630
testenv.SkipFlaky(t, 49382)
631631
}
632+
if runtime.GOOS == "openbsd" {
633+
testenv.SkipFlaky(t, 51482)
634+
}
632635

633636
// The goal of this test is to trigger a "racy sudog adjustment"
634637
// throw. Basically, there's a window between when a goroutine

0 commit comments

Comments
 (0)