summaryrefslogtreecommitdiff
path: root/src/run.bat
diff options
context:
space:
mode:
Diffstat (limited to 'src/run.bat')
-rw-r--r--src/run.bat15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/run.bat b/src/run.bat
index 1a3412602..01d0b4f95 100644
--- a/src/run.bat
+++ b/src/run.bat
@@ -36,6 +36,16 @@ go test sync -short -timeout=120s -cpu=10
if errorlevel 1 goto fail
echo.
+echo # ..\misc\dashboard\builder ..\misc\goplay
+go build ..\misc\dashboard\builder ..\misc\goplay
+if errorlevel 1 goto fail
+echo.
+
+echo # ..\test\bench\go1
+go test ..\test\bench\go1
+if errorlevel 1 goto fail
+echo.
+
:: TODO: The other tests in run.bash.
echo # test
@@ -47,6 +57,11 @@ cd ..\src
echo.
if %FAIL%==1 goto fail
+echo # Checking API compatibility.
+go tool api -c ..\api\go1.txt
+if errorlevel 1 goto fail
+echo.
+
echo ALL TESTS PASSED
goto end