summaryrefslogtreecommitdiff
path: root/src/run.bash
diff options
context:
space:
mode:
authorDmitriy Vyukov <dvyukov@google.com>2013-08-12 22:04:10 +0400
committerDmitriy Vyukov <dvyukov@google.com>2013-08-12 22:04:10 +0400
commit81557db57a7638ccc12c7ecdfa921f11d02c9f13 (patch)
tree6ad3793b54c7c667b9e4aab37e89c2fc97fd7ad2 /src/run.bash
parent5445328edeceba3fa8bb0df50778e9717ccec27b (diff)
downloadgo-81557db57a7638ccc12c7ecdfa921f11d02c9f13.tar.gz
runtime/race: add end-to-end test
Fixes issue 5933. R=golang-dev, bradfitz CC=golang-dev https://codereview.appspot.com/12699051
Diffstat (limited to 'src/run.bash')
-rwxr-xr-xsrc/run.bash3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/run.bash b/src/run.bash
index 258a4d2f9..018648e59 100755
--- a/src/run.bash
+++ b/src/run.bash
@@ -61,7 +61,8 @@ case "$GOHOSTOS-$GOOS-$GOARCH-$CGO_ENABLED" in
linux-linux-amd64-1 | darwin-darwin-amd64-1)
echo
echo '# Testing race detector.'
- go test -race -i flag
+ go test -race -i runtime/race flag
+ go test -race -run=Output runtime/race
go test -race -short flag
esac