~ubuntu-branches/ubuntu/vivid/golang/vivid

« back to all changes in this revision

Viewing changes to src/run.bat

  • Committer: Package Import Robot
  • Author(s): Ondřej Surý, Ondřej Surý, Michael Stapelberg
  • Date: 2012-06-28 12:14:15 UTC
  • mfrom: (14.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20120628121415-rujz1ij5jcwhrhpe
Tags: 2:1.0.2-1
[ Ondřej Surý ]
* Imported Upstream version 1.0.2
* Update Vcs fields to reflect new git repository location
* Kill get-orig-source, since 1.0.0, the tarballs can be downloaded
  from webpage

[ Michael Stapelberg ]
* golang-mode: use debian-pkg-add-load-path-item (Closes: #664802)
* Add manpages (Closes: #632964)
* Use updated pt.po from Pedro Ribeiro (Closes: #674958)

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
echo.
26
26
:norebuild
27
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
 
28
33
echo # Testing packages.
29
34
go test std -short -timeout=120s
30
35
if errorlevel 1 goto fail
63
68
if %FAIL%==1 goto fail
64
69
 
65
70
echo # Checking API compatibility.
66
 
go tool api -c ..\api\go1.txt
 
71
go tool api -c ..\api\go1.txt -next ..\api\next.txt
67
72
if errorlevel 1 goto fail
68
73
echo.
69
74