mirror of
https://github.com/golang/go
synced 2024-11-21 23:24:41 -07:00
make.bat, run.bat: echo newlines
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5671072
This commit is contained in:
parent
014568bee1
commit
7fc47928fc
@ -38,8 +38,7 @@ if errorlevel 1 goto fail
|
|||||||
if errorlevel 1 goto fail
|
if errorlevel 1 goto fail
|
||||||
call env.bat
|
call env.bat
|
||||||
del env.bat
|
del env.bat
|
||||||
:: Echo with no arguments prints whether echo is turned on, so echo dot.
|
echo.
|
||||||
echo .
|
|
||||||
|
|
||||||
echo # Building compilers and Go bootstrap tool.
|
echo # Building compilers and Go bootstrap tool.
|
||||||
set buildall=-a
|
set buildall=-a
|
||||||
@ -49,7 +48,7 @@ if errorlevel 1 goto fail
|
|||||||
:: Delay move of dist tool to now, because bootstrap cleared tool directory.
|
:: Delay move of dist tool to now, because bootstrap cleared tool directory.
|
||||||
move .\cmd\dist\dist.exe %GOTOOLDIR%\dist.exe
|
move .\cmd\dist\dist.exe %GOTOOLDIR%\dist.exe
|
||||||
%GOTOOLDIR%\go_bootstrap clean -i std
|
%GOTOOLDIR%\go_bootstrap clean -i std
|
||||||
echo .
|
echo.
|
||||||
|
|
||||||
if not %GOHOSTARCH% == %GOARCH% goto localbuild
|
if not %GOHOSTARCH% == %GOARCH% goto localbuild
|
||||||
if not %GOHOSTOS% == %GOOS% goto localbuild
|
if not %GOHOSTOS% == %GOOS% goto localbuild
|
||||||
@ -63,14 +62,14 @@ set GOARCH=%GOHOSTARCH%
|
|||||||
%GOTOOLDIR%\go_bootstrap install -v std
|
%GOTOOLDIR%\go_bootstrap install -v std
|
||||||
endlocal
|
endlocal
|
||||||
if errorlevel 1 goto fail
|
if errorlevel 1 goto fail
|
||||||
echo .
|
echo.
|
||||||
|
|
||||||
:mainbuild
|
:mainbuild
|
||||||
echo # Building packages and commands.
|
echo # Building packages and commands.
|
||||||
%GOTOOLDIR%\go_bootstrap install -a -v std
|
%GOTOOLDIR%\go_bootstrap install -a -v std
|
||||||
if errorlevel 1 goto fail
|
if errorlevel 1 goto fail
|
||||||
del %GOTOOLDIR%\go_bootstrap.exe
|
del %GOTOOLDIR%\go_bootstrap.exe
|
||||||
echo .
|
echo.
|
||||||
|
|
||||||
if x%1==x--no-banner goto nobanner
|
if x%1==x--no-banner goto nobanner
|
||||||
%GOTOOLDIR%\dist banner
|
%GOTOOLDIR%\dist banner
|
||||||
|
@ -18,23 +18,23 @@ if x%1==x--no-rebuild goto norebuild
|
|||||||
echo # Building packages and commands.
|
echo # Building packages and commands.
|
||||||
go install -a -v std
|
go install -a -v std
|
||||||
if errorlevel 1 goto fail
|
if errorlevel 1 goto fail
|
||||||
echo .
|
echo.
|
||||||
:norebuild
|
:norebuild
|
||||||
|
|
||||||
echo # Testing packages.
|
echo # Testing packages.
|
||||||
go test std -short -timeout=120s
|
go test std -short -timeout=120s
|
||||||
if errorlevel 1 goto fail
|
if errorlevel 1 goto fail
|
||||||
echo .
|
echo.
|
||||||
|
|
||||||
echo # runtime -cpu=1,2,4
|
echo # runtime -cpu=1,2,4
|
||||||
go test runtime -short -timeout=120s -cpu=1,2,4
|
go test runtime -short -timeout=120s -cpu=1,2,4
|
||||||
if errorlevel 1 goto fail
|
if errorlevel 1 goto fail
|
||||||
echo .
|
echo.
|
||||||
|
|
||||||
echo # sync -cpu=10
|
echo # sync -cpu=10
|
||||||
go test sync -short -timeout=120s -cpu=10
|
go test sync -short -timeout=120s -cpu=10
|
||||||
if errorlevel 1 goto fail
|
if errorlevel 1 goto fail
|
||||||
echo .
|
echo.
|
||||||
|
|
||||||
:: TODO: The other tests in run.bash, especially $GOROOT/test/run.
|
:: TODO: The other tests in run.bash, especially $GOROOT/test/run.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user