Improve handling of image subtitle IDs in XML (DoM bug #1965)
[libdcp.git] / run / tests
index 4748927f311ebaa82e8931e49f5302a925188f5e..5c294dabfc85bf74d8efa1f7d69dae755612358c 100755 (executable)
--- a/run/tests
+++ b/run/tests
@@ -27,7 +27,9 @@ elif [ "$1" == "--callgrind" ]; then
     shift
     valgrind --tool="callgrind" $work/tests $private $*
 else
-    $work/tests $* -- $private
+    # This gives a warning from newer boost versions but doing it
+    # as $work/tests $* -- $private fails on older boost versions.
+    $work/tests $private $*
     if [ "$?" != "0" ]; then
        echo "FAIL: unit tests"
         exit 1