Hack for running development environment in some cases.
[dcpomatic.git] / run / tests
index 7993facf9fefdd56e8727f6f0bd7f0e7ac39735e..77db5d52bbfd15662596a2364fdd00e18fe6c38b 100755 (executable)
--- 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
-