We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55d4cbf commit 4a70ff4Copy full SHA for 4a70ff4
src/cmd/go/internal/renameio/renameio_test.go
@@ -9,11 +9,13 @@ package renameio
9
import (
10
"encoding/binary"
11
"errors"
12
+ "internal/testenv"
13
"io/ioutil"
14
"math/rand"
15
"os"
16
"path/filepath"
17
"runtime"
18
+ "strings"
19
"sync"
20
"sync/atomic"
21
"syscall"
@@ -24,6 +26,10 @@ import (
24
26
)
25
27
28
func TestConcurrentReadsAndWrites(t *testing.T) {
29
+ if runtime.GOOS == "darwin" && strings.HasSuffix(testenv.Builder(), "-10_14") {
30
+ testenv.SkipFlaky(t, 33041)
31
+ }
32
+
33
dir, err := ioutil.TempDir("", "renameio")
34
if err != nil {
35
t.Fatal(err)
0 commit comments