summaryrefslogtreecommitdiff
path: root/src/race.bash
Commit message (Collapse)AuthorAgeFilesLines
* race.bash: support freebsdDmitriy Vyukov2014-06-241-1/+6
| | | | | | R=golang-codereviews, iant CC=golang-codereviews https://codereview.appspot.com/110150044
* race.bash,race.bat: unset GOROOT_FINAL during testsAlex Brainman2014-05-071-0/+6
| | | | | | | | | | Just like run.* scripts do. Fixes race build. LGTM=dave, dvyukov R=dvyukov, dave CC=golang-codereviews https://codereview.appspot.com/98980043
* race.bash, race.bat: build a race enabled cmd/cgo before trying to use itDave Cheney2013-09-291-0/+2
| | | | | | | | | | Fixes issue 5537. To avoid `go install -v race std` replacing cmd/cgo with a race enabled version and another package trying to build a cgo enabled package, always build cmd/cgo race enabled before doing the rest of the build. R=remyoudompheng, rsc, dvyukov, minux.ma CC=golang-dev https://codereview.appspot.com/14071044
* src: add race.bashDave Cheney2013-01-281-0/+40
Add race.bash so anyone with suitable hardware can run a race detector build. race.bash can be called from the dashboard builder by passing -cmd="race.bash". Original source for race.bash is here, http://code.google.com/p/go-wiki/wiki/DashboardBuilders TODO: add race.bat for windows/amd64 R=dvyukov, minux.ma, adg, rsc CC=fullung, golang-dev https://codereview.appspot.com/7179052