]> Cypherpunks.ru repositories - gostls13.git/blob - src/run.bat
cmd/api: add api/next.txt
[gostls13.git] / src / run.bat
1 :: Copyright 2012 The Go Authors. All rights reserved.
2 :: Use of this source code is governed by a BSD-style
3 :: license that can be found in the LICENSE file.
4 @echo off
5
6 :: Keep environment variables within this script
7 :: unless invoked with --no-local.
8 if x%1==x--no-local goto nolocal
9 if x%2==x--no-local goto nolocal
10 setlocal
11 :nolocal
12
13 set GOBUILDFAIL=0
14
15 :: we disallow local import for non-local packages, if %GOROOT% happens
16 :: to be under %GOPATH%, then some tests below will fail
17 set GOPATH=
18
19 rem TODO avoid rebuild if possible
20
21 if x%1==x--no-rebuild goto norebuild
22 echo # Building packages and commands.
23 go install -a -v std
24 if errorlevel 1 goto fail
25 echo.
26 :norebuild
27
28 :: we must unset GOROOT_FINAL before tests, because runtime/debug requires
29 :: correct access to source code, so if we have GOROOT_FINAL in effect,
30 :: at least runtime/debug test will fail.
31 set GOROOT_FINAL=
32
33 echo # Testing packages.
34 go test std -short -timeout=120s
35 if errorlevel 1 goto fail
36 echo.
37
38 echo # runtime -cpu=1,2,4
39 go test runtime -short -timeout=120s -cpu=1,2,4
40 if errorlevel 1 goto fail
41 echo.
42
43 echo # sync -cpu=10
44 go test sync -short -timeout=120s -cpu=10
45 if errorlevel 1 goto fail
46 echo.
47
48 echo # ..\misc\dashboard\builder ..\misc\goplay
49 go build ..\misc\dashboard\builder ..\misc\goplay
50 if errorlevel 1 goto fail
51 echo.
52
53 :: TODO(brainman): disabled, because it fails with: mkdir C:\Users\ADMINI~1\AppData\Local\Temp\2.....\test\bench\: The filename or extension is too long.
54 ::echo # ..\test\bench\go1
55 ::go test ..\test\bench\go1
56 ::if errorlevel 1 goto fail
57 ::echo.
58
59 :: TODO: The other tests in run.bash.
60
61 echo # test
62 cd ..\test
63 set FAIL=0
64 go run run.go
65 if errorlevel 1 set FAIL=1
66 cd ..\src
67 echo.
68 if %FAIL%==1 goto fail
69
70 echo # Checking API compatibility.
71 go tool api -c ..\api\go1.txt -next ..\api\next.txt
72 if errorlevel 1 goto fail
73 echo.
74
75 echo ALL TESTS PASSED
76 goto end
77
78 :fail
79 set GOBUILDFAIL=1
80
81 :end