aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cmd/go/internal/renameio/renameio_test.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/cmd/go/internal/renameio/renameio_test.go b/src/cmd/go/internal/renameio/renameio_test.go
index ee2f3ba1bb..df8ddabdb8 100644
--- a/src/cmd/go/internal/renameio/renameio_test.go
+++ b/src/cmd/go/internal/renameio/renameio_test.go
@@ -9,11 +9,13 @@ package renameio
import (
"encoding/binary"
"errors"
+ "internal/testenv"
"io/ioutil"
"math/rand"
"os"
"path/filepath"
"runtime"
+ "strings"
"sync"
"sync/atomic"
"syscall"
@@ -24,6 +26,10 @@ import (
)
func TestConcurrentReadsAndWrites(t *testing.T) {
+ if runtime.GOOS == "darwin" && strings.HasSuffix(testenv.Builder(), "-10_14") {
+ testenv.SkipFlaky(t, 33041)
+ }
+
dir, err := ioutil.TempDir("", "renameio")
if err != nil {
t.Fatal(err)