summaryrefslogtreecommitdiff
path: root/src/run.bash
diff options
context:
space:
mode:
authorDmitriy Vyukov <dvyukov@google.com>2014-06-20 20:54:18 -0400
committerDmitriy Vyukov <dvyukov@google.com>2014-06-20 20:54:18 -0400
commit7fcfed984ad40093cc1a3a2d1f176fb467803d95 (patch)
tree12d738f9196d2dbc274d94c25824b324c12b797c /src/run.bash
parentdf64df4b214504789a7dd53633e5e02996b74c99 (diff)
downloadgo-7fcfed984ad40093cc1a3a2d1f176fb467803d95.tar.gz
run.bash: run race tests on freebsd
LGTM=dave R=golang-codereviews, dave CC=golang-codereviews https://codereview.appspot.com/102580043
Diffstat (limited to 'src/run.bash')
-rwxr-xr-xsrc/run.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/run.bash b/src/run.bash
index 6eec7caa4..128f15c39 100755
--- a/src/run.bash
+++ b/src/run.bash
@@ -64,10 +64,10 @@ echo
echo '# sync -cpu=10'
go test sync -short -timeout=$(expr 120 \* $timeout_scale)s -cpu=10
-# Race detector only supported on Linux and OS X,
+# Race detector only supported on Linux, FreeBSD and OS X,
# and only on amd64, and only when cgo is enabled.
case "$GOHOSTOS-$GOOS-$GOARCH-$CGO_ENABLED" in
-linux-linux-amd64-1 | darwin-darwin-amd64-1)
+linux-linux-amd64-1 | freebsd-freebsd-amd64-1 | darwin-darwin-amd64-1)
echo
echo '# Testing race detector.'
go test -race -i runtime/race flag