Left: | ||
Right: |
OLD | NEW |
---|---|
1 #!/usr/bin/env bash | 1 #!/usr/bin/env bash |
2 # Copyright 2009 The Go Authors. All rights reserved. | 2 # Copyright 2009 The Go Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style | 3 # Use of this source code is governed by a BSD-style |
4 # license that can be found in the LICENSE file. | 4 # license that can be found in the LICENSE file. |
5 | 5 |
6 set -e | 6 set -e |
7 | 7 |
8 eval $(go env) | 8 eval $(go env) |
9 | 9 |
10 unset CDPATH # in case user has it set | 10 unset CDPATH # in case user has it set |
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
108 [ "$GOARCH" == arm ] || | 108 [ "$GOARCH" == arm ] || |
109 (xcd ../test/bench/shootout | 109 (xcd ../test/bench/shootout |
110 ./timing.sh -test | 110 ./timing.sh -test |
111 ) || exit $? | 111 ) || exit $? |
112 | 112 |
113 echo | 113 echo |
114 echo '#' ../test/bench/go1 | 114 echo '#' ../test/bench/go1 |
115 go test ../test/bench/go1 | 115 go test ../test/bench/go1 |
116 | 116 |
117 (xcd ../test | 117 (xcd ../test |
118 unset GOMAXPROCS | |
118 time go run run.go | 119 time go run run.go |
r
2012/11/14 14:33:08
this is fine, but so is
GOMAXPROCS= time go run ru
dave_cheney.net
2012/11/15 00:23:26
Done.
| |
119 ) || exit $? | 120 ) || exit $? |
120 | 121 |
121 echo | 122 echo |
122 echo '# Checking API compatibility.' | 123 echo '# Checking API compatibility.' |
123 go tool api -c $GOROOT/api/go1.txt -next $GOROOT/api/next.txt -except $GOROOT/ap i/except.txt | 124 go tool api -c $GOROOT/api/go1.txt -next $GOROOT/api/next.txt -except $GOROOT/ap i/except.txt |
124 | 125 |
125 echo | 126 echo |
126 echo ALL TESTS PASSED | 127 echo ALL TESTS PASSED |
OLD | NEW |