summaryrefslogtreecommitdiff
path: root/net-p2p/syncthing/files/syncthing-1.23.2-tests_race.patch
blob: 8d9e6819d101dd71dc4c176c2e6fc27fc96599b5 (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
25
--- a/build.go
+++ b/build.go
@@ -32,8 +32,6 @@
 	"strings"
 	"text/template"
 	"time"
-
-	buildpkg "github.com/syncthing/syncthing/lib/build"
 )
 
 var (
@@ -409,13 +409,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, ","))
 	}