Missing library from test link list.
[dcpomatic.git] / run / tests
index fc1b840f61e2e460164a2fb365fbd317dd6dc32b..13aa1f6e6ffdde09bfbc407a06b90262dd21ab7d 100755 (executable)
--- a/run/tests
+++ b/run/tests
@@ -20,8 +20,14 @@ elif [ "$1" == "--callgrind" ]; then
 elif [ "$1" == "--quiet" ]; then
     shift;
     build/test/unit-tests --catch_system_errors=no $*
+elif [ "$1" == "--drd" ]; then
+    shift;
+    valgrind --tool="drd" build/test/unit-tests $*
+elif [ "$1" == "--helgrind" ]; then
+    shift;
+    valgrind --tool="helgrind" build/test/unit-tests $*
 else
     ulimit -c unlimited
-    build/test/unit-tests --catch_system_errors=no --log_level=all $*
+    build/test/unit-tests --catch_system_errors=no --log_level=test_suite $*
 #    build/test/unit-tests --catch_system_errors=no $*
 fi