Reviewers: albert.strasheim,
Message:
Hello fullung@gmail.com (cc: golang-dev@googlegroups.com),
I'd like you to review this change to
https://code.google.com/p/go
Description:
run.bash: unset GOMAXPROCS before ../test
test/run.go already executes tests in parallel where
possible. An unknown GOMAXPROCS value during the tests
is known to cause failures with tests that measure
allocations.
ref:
https://groups.google.com/d/topic/golang-nuts/tgMhFJ3F5WY/discussion
Please review this at http://codereview.appspot.com/6847050/
Affected files:
M src/run.bash
Index: src/run.bash
===================================================================
--- a/src/run.bash
+++ b/src/run.bash
@@ -115,6 +115,7 @@
go test ../test/bench/go1
(xcd ../test
+unset GOMAXPROCS
time go run run.go
) || exit $?