summaryrefslogtreecommitdiff
path: root/src/run.bash
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2014-09-24 12:42:47 -0700
committerBrad Fitzpatrick <bradfitz@golang.org>2014-09-24 12:42:47 -0700
commitbb49d4d0b1b326d82dd93f84684571674cedd834 (patch)
treecb738efb11327f7d584b9843c08002836f4a0806 /src/run.bash
parentc6451dc8ba7f34d5b8f7aaa5cd27feb2c34be294 (diff)
downloadgo-bb49d4d0b1b326d82dd93f84684571674cedd834.tar.gz
src: pass GO_GCFLAGS down to go test std
Update Issue 8725 LGTM=rsc, josharian R=rsc, josharian CC=golang-codereviews https://codereview.appspot.com/149000043
Diffstat (limited to 'src/run.bash')
-rwxr-xr-xsrc/run.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/run.bash b/src/run.bash
index d6e53304d..4966cf1aa 100755
--- a/src/run.bash
+++ b/src/run.bash
@@ -52,7 +52,7 @@ timeout_scale=1
[ "$GOARCH" == "arm" ] && timeout_scale=3
echo '# Testing packages.'
-time go test std -short -timeout=$(expr 120 \* $timeout_scale)s
+time go test std -short -timeout=$(expr 120 \* $timeout_scale)s -gcflags "$GO_GCFLAGS"
echo
# We set GOMAXPROCS=2 in addition to -cpu=1,2,4 in order to test runtime bootstrap code,