Skip to content

Commit 35f2aba

Browse files
Bryan C. Millsgopherbot
authored andcommitted
os: skip TestRemoveAllRace on dragonfly
This test occasionally fails on the dragonfly-amd64 builder with "directory not empty". Since that is the only platform on which we observe these failures, and since the test had a different (and also invalid-looking) failure mode prior to this one (in #50716), we suspect that it is due to either a bug in the platform or a platform-specific Go bug. For #52301. Change-Id: Id36c499651b9c48e6b8b0107d01f73d2a7b6bab8 Reviewed-on: https://go-review.googlesource.com/c/go/+/402155 Run-TryBot: Bryan Mills <[email protected]> Auto-Submit: Bryan Mills <[email protected]> TryBot-Result: Gopher Robot <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent 22a00f2 commit 35f2aba

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/os/os_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2429,6 +2429,9 @@ func TestRemoveAllRace(t *testing.T) {
24292429
// like it does on Unix.
24302430
t.Skip("skipping on windows")
24312431
}
2432+
if runtime.GOOS == "dragonfly" {
2433+
testenv.SkipFlaky(t, 52301)
2434+
}
24322435

24332436
n := runtime.GOMAXPROCS(16)
24342437
defer runtime.GOMAXPROCS(n)

0 commit comments

Comments
 (0)