Created
August 25, 2015 08:12
-
-
Save awalterschulze/a40ab7e715a5a6cc57da to your computer and use it in GitHub Desktop.
Finding Concurrency Bugs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function repeattest { | |
go test -c | |
while [ $? -eq 0 ]; do | |
GOMAXPROCS=$[ 1 + $[ RANDOM % 100 ]] ./`ls *.test` -test.v $1 2>&1 | |
done | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment