Undo previous commit and leave comment.
authorCarl Hetherington <cth@carlh.net>
Tue, 24 Apr 2018 14:11:30 +0000 (15:11 +0100)
committerCarl Hetherington <cth@carlh.net>
Tue, 24 Apr 2018 14:11:30 +0000 (15:11 +0100)
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