Skip to content

Commit 0bbcce9

Browse files
author
Bryan C. Mills
committed
cmd/go/internal/lockedfile: skip flaky TestTransform on plan9
Updates #35471 Change-Id: Ie06c442e405a267eb909621e1205444b6a00fda1 Reviewed-on: https://go-review.googlesource.com/c/go/+/206197 Run-TryBot: Bryan C. Mills <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: David du Colombier <[email protected]>
1 parent b7d097a commit 0bbcce9

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/cmd/go/internal/lockedfile/transform_test.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ package lockedfile_test
1010
import (
1111
"bytes"
1212
"encoding/binary"
13+
"internal/testenv"
1314
"math/rand"
1415
"path/filepath"
16+
"runtime"
1517
"testing"
1618
"time"
1719

@@ -35,6 +37,10 @@ func roundDownToPowerOf2(x int) int {
3537
}
3638

3739
func TestTransform(t *testing.T) {
40+
if runtime.GOOS == "plan9" {
41+
testenv.SkipFlaky(t, 35471)
42+
}
43+
3844
dir, remove := mustTempDir(t)
3945
defer remove()
4046
path := filepath.Join(dir, "blob.bin")

0 commit comments

Comments
 (0)