diff options
Diffstat (limited to 'test.bash')
-rwxr-xr-x | test.bash | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -26,18 +26,18 @@ done source build-without-openssl.bash source build.bash -go test ./... $* - -# The tests cannot to this themselves as they are run in parallel. -# Don't descend into possibly still mounted example filesystems. -rm -Rf --one-file-system $TESTDIR - if go tool | grep vet > /dev/null ; then go tool vet -all -shadow . else echo "\"go tool vet\" not available - skipping" fi +go test ./... $* + +# The tests cannot to this themselves as they are run in parallel. +# Don't descend into possibly still mounted example filesystems. +rm -Rf --one-file-system $TESTDIR + if grep -R "panic(" internal ; then echo "Please use log.Panic instead of naked panic!" exit 1 |