Graphics rearrangement and probably breakage.
[dcpomatic.git] / run / tests
index e9c02589375a47d2a60d291390b890153b73ada6..aa143e0d68f8d9911af76768426667dcd85293dc 100755 (executable)
--- 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
-