stress.bash 240 B

1234567891011
  1. #!/usr/bin/env bash -e
  2. go test -c
  3. # comment above and uncomment below to enable the race builder
  4. #go test -c -race
  5. PKG=$(basename $(pwd))
  6. while true ; do
  7. export GOMAXPROCS=$[ 1 + $[ RANDOM % 128 ]]
  8. ./$PKG.test $@ 2>&1
  9. done