summaryrefslogtreecommitdiff
path: root/net-p2p/syncthing/files/syncthing-1.27.4-tests_race.patch
blob: 1c83a03ec00f9c1694258bfc322a6db24b374207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--- a/build.go
+++ b/build.go
@@ -34,7 +34,6 @@
 	"time"
 
 	_ "github.com/syncthing/syncthing/lib/automaxprocs"
-	buildpkg "github.com/syncthing/syncthing/lib/build"
 )
 
 var (
@@ -416,13 +415,6 @@
 	}
 	args = append(args, "-timeout", timeout)
 
-	if runtime.GOARCH == "amd64" {
-		switch runtime.GOOS {
-		case buildpkg.Darwin, buildpkg.Linux, buildpkg.FreeBSD: // , "windows": # See https://github.com/golang/go/issues/27089
-			args = append(args, "-race")
-		}
-	}
-
 	if coverage {
 		args = append(args, "-covermode", "atomic", "-coverprofile", "coverage.txt", "-coverpkg", strings.Join(pkgs, ","))
 	}