Clean up of 3D->2D conversion.
[dcpomatic.git] / run / tests
index 7993facf9fefdd56e8727f6f0bd7f0e7ac39735e..714733bcf6bf5bfa6bf95c02f90de4eaaa273f61 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
-