Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(140)

Side by Side Diff: src/run.bash

Issue 6847050: code review 6847050: run.bash: unset GOMAXPROCS before ../test (Closed)
Patch Set: diff -r d9896259d8e5 https://code.google.com/p/go Created 12 years, 4 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/run.bat » ('j') | src/run.rc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | src/run.bat » ('j') | src/run.rc » ('J')

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b