Skip to content

Commit

Permalink
runtime: skip TestNoShrinkStackWhileParking on openbsd
Browse files Browse the repository at this point in the history
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 golang#51482.

Change-Id: I92ad7498c20cfa94565880363bec85f9a4f3e916
Reviewed-on: https://go-review.googlesource.com/c/go/+/401335
Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Reviewed-by: Bryan Mills <bcmills@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
  • Loading branch information
dmitshur authored and gopherbot committed Apr 22, 2022
1 parent 3227501 commit 534a911
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/runtime/chan_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -629,6 +629,9 @@ func TestNoShrinkStackWhileParking(t *testing.T) {
if runtime.GOOS == "netbsd" && runtime.GOARCH == "arm64" {
testenv.SkipFlaky(t, 49382)
}
if runtime.GOOS == "openbsd" {
testenv.SkipFlaky(t, 51482)
}

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

0 comments on commit 534a911

Please sign in to comment.