aboutsummaryrefslogtreecommitdiff
path: root/src/run.bat
diff options
context:
space:
mode:
authorRémy Oudompheng <oudomphe@phare.normalesup.org>2014-02-19 08:19:27 +0100
committerRémy Oudompheng <oudomphe@phare.normalesup.org>2014-02-19 08:19:27 +0100
commit475e7d037299c3187054319f5e984c57524cabef (patch)
tree11e8913387c34d30b8d6cd15a352555c43daefae /src/run.bat
parent96678f9dc026648889830cd058cd34d9e7759426 (diff)
downloadgo-475e7d037299c3187054319f5e984c57524cabef.tar.gz
go-475e7d037299c3187054319f5e984c57524cabef.zip
cmd/gc: fix handling of append with -race.
Also re-enable race tests in run.bash. Fixes #7334. LGTM=rsc R=rsc, dvyukov, iant, bradfitz, dave CC=golang-codereviews https://golang.org/cl/65740043
Diffstat (limited to 'src/run.bat')
-rw-r--r--src/run.bat4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/run.bat b/src/run.bat
index 00bbd5905a..f01032699e 100644
--- a/src/run.bat
+++ b/src/run.bat
@@ -54,9 +54,7 @@ echo.
:: Race detector only supported on Linux and OS X,
:: and only on amd64, and only when cgo is enabled.
-:: Disabled due to golang.org/issue/7334; remove XXX below
-:: and in run.bash to reenable.
-if not "%GOHOSTOS%-%GOOS%-%GOARCH%-%CGO_ENABLED%" == "XXXwindows-windows-amd64-1" goto norace
+if not "%GOHOSTOS%-%GOOS%-%GOARCH%-%CGO_ENABLED%" == "windows-windows-amd64-1" goto norace
echo # Testing race detector.
go test -race -i runtime/race flag
if errorlevel 1 goto fail