blob: 6225840168834d2fa16c56841f5c1c2d20e00f86 [file] [log] [blame]
Dave Cheneyb53e95a2013-01-28 21:05:25 +11001#!/usr/bin/env bash
2# Copyright 2013 The Go Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style
4# license that can be found in the LICENSE file.
5
6# race.bash tests the standard library under the race detector.
7# http://golang.org/doc/articles/race_detector.html
8
9set -e
10
11function usage {
Dmitriy Vyukovde2feea2014-06-24 15:47:22 -070012 echo 'race detector is only supported on linux/amd64, freebsd/amd64 and darwin/amd64' 1>&2
Dave Cheneyb53e95a2013-01-28 21:05:25 +110013 exit 1
14}
15
16case $(uname) in
17"Darwin")
18 # why Apple? why?
19 if sysctl machdep.cpu.extfeatures | grep -qv EM64T; then
20 usage
21 fi
22 ;;
23"Linux")
24 if [ $(uname -m) != "x86_64" ]; then
25 usage
26 fi
27 ;;
Dmitriy Vyukovde2feea2014-06-24 15:47:22 -070028"FreeBSD")
29 if [ $(uname -m) != "amd64" ]; then
30 usage
31 fi
32 ;;
Dave Cheneyb53e95a2013-01-28 21:05:25 +110033*)
34 usage
35 ;;
36esac
37
38if [ ! -f make.bash ]; then
39 echo 'race.bash must be run from $GOROOT/src' 1>&2
40 exit 1
41fi
42. ./make.bash --no-banner
Dave Cheneycdb33232013-09-29 10:34:41 +100043# golang.org/issue/5537 - we must build a race enabled cmd/cgo before trying to use it.
44go install -race cmd/cgo
Dave Cheneyb53e95a2013-01-28 21:05:25 +110045go install -race std
Alex Brainman5d251892014-05-07 16:34:21 +100046
47# we must unset GOROOT_FINAL before tests, because runtime/debug requires
48# correct access to source code, so if we have GOROOT_FINAL in effect,
49# at least runtime/debug test will fail.
50unset GOROOT_FINAL
51
Dave Cheneyb53e95a2013-01-28 21:05:25 +110052go test -race -short std
53go test -race -run=nothingplease -bench=.* -benchtime=.1s -cpu=4 std