X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=run%2Ftests;h=77db5d52bbfd15662596a2364fdd00e18fe6c38b;hb=70b923d244255cc1425f0ade4b3d280e07da7038;hp=7993facf9fefdd56e8727f6f0bd7f0e7ac39735e;hpb=0a93237cb5e4642d3b698ff9b7d0cfae5401478c;p=dcpomatic.git diff --git a/run/tests b/run/tests index 7993facf9..77db5d52b 100755 --- a/run/tests +++ b/run/tests @@ -7,10 +7,19 @@ export DCPOMATIC_LINUX_SHARE_PREFIX=`pwd` if [ "$1" == "--debug" ]; then shift; gdb --args build/test/unit-tests --catch_system_errors=no $* +elif [ "$1" == "--backtrace" ]; then + shift; + gdb -batch -ex "run" -ex "thread apply all bt" --args build/test/unit-tests --catch_system_errors=no $* 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 -