test.sh 90 B

12345
  1. l=$(go list ./...)
  2. for x in $l; do
  3. echo "Testing package $x"
  4. go test -race -v $x
  5. done