aboutsummaryrefslogtreecommitdiff
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
commit2791ef0b6784f487738b7dbe6bda520b426131f3 (patch)
tree3cefde6b93d57f31fb17d96c312b527faef5b41a /src/run.bash
parentfa4628346b78f8847f11166d52d250abb6cb50df (diff)
downloadgo-2791ef0b6784f487738b7dbe6bda520b426131f3.tar.gz
go-2791ef0b6784f487738b7dbe6bda520b426131f3.zip
runtime/race: add end-to-end test
Fixes #5933. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/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 258a4d2f94..018648e592 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