Try a little harder to make sure we use the patched openssl for
[dcpomatic.git] / run / tests
index 7a757e9d0e0fdd0bfdb6822d05c2264b398b3d4e..8b54d2b457757a174818b6cc63e112bd0cd287b5 100755 (executable)
--- a/run/tests
+++ b/run/tests
@@ -2,11 +2,16 @@
 #
 # e.g. --run_tests=foo
 
-export LD_LIBRARY_PATH=build/src/lib:/home/c.hetherington/lib:$LD_LIBRARY_PATH
-export DCPOMATIC_LINUX_SHARE_PREFIX=`pwd`
+if [ "$(uname)" == "Linux" ]; then 
+  export LD_LIBRARY_PATH=build/src/lib:/home/c.hetherington/lib:$LD_LIBRARY_PATH
+  rm -f build/test/openssl
+  # This must be our patched openssl or tests will fail
+  ln -s ../../../openssl/apps/openssl build/test/dcpomatic2_openssl
+fi
+
 if [ "$1" == "--debug" ]; then
     shift;
-    gdb --args build/test/unit-tests --catch_system_errors=no $*
+    gdb --args build/test/unit-tests --catch_system_errors=no --log_level=test_suite $*
 elif [ "$1" == "--backtrace" ]; then
     shift;
     gdb -batch -ex "run" -ex "thread apply all bt" -return-child-result --args build/test/unit-tests --catch_system_errors=yes $*
@@ -20,8 +25,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 $*
+    build/test/unit-tests --catch_system_errors=no --log_level=test_suite $*
 #    build/test/unit-tests --catch_system_errors=no $*
 fi