1
0
mirror of https://github.com/golang/go synced 2024-09-25 01:10:13 -06:00

test: actually run them on windows

R=golang-dev, r, rsc, bradfitz, minux.ma
CC=golang-dev
https://golang.org/cl/5756065
This commit is contained in:
Alex Brainman 2012-03-13 12:51:28 +11:00
parent 0238cec021
commit 7c128493a4

View File

@ -39,11 +39,13 @@ echo.
:: TODO: The other tests in run.bash. :: TODO: The other tests in run.bash.
echo # test echo # test
cd test cd ..\test
set FAIL=0
go run run.go go run run.go
cd .. if errorlevel 1 set FAIL=1
if errorlevel 1 goto fail cd ..\src
echo. echo.
if %FAIL%==1 goto fail
echo ALL TESTS PASSED echo ALL TESTS PASSED
goto end goto end