X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=run%2Ftests;h=aa143e0d68f8d9911af76768426667dcd85293dc;hb=6aadfd3e775d7c23047dad1f383b8b68ba964782;hp=e9c02589375a47d2a60d291390b890153b73ada6;hpb=6f0a590bc3266f21ba577116219bd019e891d480;p=dcpomatic.git diff --git a/run/tests b/run/tests index e9c025893..aa143e0d6 100755 --- a/run/tests +++ b/run/tests @@ -10,7 +10,13 @@ if [ "$1" == "--debug" ]; then elif [ "$1" == "--valgrind" ]; then shift; valgrind --tool="memcheck" --leak-check=full build/test/unit-tests $* +elif [ "$1" == "--callgrind" ]; then + shift; + valgrind --tool="callgrind" build/test/unit-tests $* +elif [ "$1" == "--quiet" ]; then + shift; + build/test/unit-tests --catch_system_errors=no $* else +# build/test/unit-tests --catch_system_errors=no --log_level=test_suite $* build/test/unit-tests --catch_system_errors=no $* fi -