Commit 7c128493 authored by Alex Brainman's avatar Alex Brainman

test: actually run them on windows

R=golang-dev, r, rsc, bradfitz, minux.ma
CC=golang-dev
https://golang.org/cl/5756065
parent 0238cec0
...@@ -39,11 +39,13 @@ echo. ...@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment