summaryrefslogtreecommitdiff
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
commit4bc2c1267a63d8764f63d1601114fcfdcdd37db2 (patch)
tree599a29dfb392720d30c546994ca71bdacbb18525 /src/run.bat
parent744748aa0a3c94b9f222b632160b5a808d303349 (diff)
downloadgo-4bc2c1267a63d8764f63d1601114fcfdcdd37db2.tar.gz
cmd/gc: fix handling of append with -race.
Also re-enable race tests in run.bash. Fixes issue 7334. LGTM=rsc R=rsc, dvyukov, iant, bradfitz, dave CC=golang-codereviews https://codereview.appspot.com/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 00bbd5905..f01032699 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