run_tests.sh (355B)
1 #!/bin/sh 2 3 ( 4 # Run in subshell with cmd echo 5 set -ex 6 7 # Run debug tests 8 DEBUG= go test -tags= -v 9 DEBUG= go test -tags=debug -v 10 DEBUG= go test -tags=debugenv -v 11 DEBUG=y go test -tags=debugenv -v 12 DEBUG=1 go test -tags=debugenv -v 13 DEBUG=y go test -tags=debugenv,debug -v 14 DEBUG=y go test -tags= -v 15 ) 16 17 echo 'success!'