From e0d5f3f138b076ac539f79ad9019b099169d2124 Mon Sep 17 00:00:00 2001 From: Ulrich Germann Date: Fri, 15 Jan 2016 23:35:09 +0000 Subject: [PATCH] Update to run-regtests.sh . --- run-regtests.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/run-regtests.sh b/run-regtests.sh index 3d93741d5..843ee3a94 100755 --- a/run-regtests.sh +++ b/run-regtests.sh @@ -53,18 +53,18 @@ git submodule update regtest # -- compile from scratch with server, run regtests set -x if [ "$full" == true ] ; then - ./bjam -j$j --with-irstlm=$irstlm --with-boost=$boost --with-cmph=$cmph --no-xmlrpc-c --with-regtest=$regtest -a $skipcompact $@ $q || exit $? + ./bjam -j$j --with-mm --with-mm-extras --with-irstlm=$irstlm --with-boost=$boost --with-cmph=$cmph --no-xmlrpc-c --with-regtest=$regtest -a $skipcompact $@ $q || exit $? if ./regression-testing/run-single-test.perl --server --startuptest ; then - ./bjam -j$j --with-irstlm=$irstlm --with-boost=$boost --with-cmph=$cmph $xmlrpc --with-regtest=$regtest -a $skipcompact $@ $q + ./bjam -j$j --with-mm --with-mm-extras --with-irstlm=$irstlm --with-boost=$boost --with-cmph=$cmph $xmlrpc --with-regtest=$regtest -a $skipcompact $@ $q fi else # when investigating failures, always run single-threaded if [ "$q" == "-q" ] ; then j=1; fi if ./regression-testing/run-single-test.perl --server --startuptest ; then - ./bjam -j$j $q $a --with-irstlm=$irstlm --with-boost=$boost --with-cmph=$cmph $xmlrpc --with-regtest=$regtest $skipcompact $@ + ./bjam -j$j --with-mm $q $a --with-irstlm=$irstlm --with-boost=$boost --with-cmph=$cmph $xmlrpc --with-regtest=$regtest $skipcompact $@ else - ./bjam -j$j $q $a --with-irstlm=$irstlm --with-boost=$boost --with-cmph=$cmph --no-xmlrpc-c --with-regtest=$regtest $skipcompact $@ + ./bjam -j$j --with-mm --with-mm-extras $q $a --with-irstlm=$irstlm --with-boost=$boost --with-cmph=$cmph --no-xmlrpc-c --with-regtest=$regtest $skipcompact $@ fi fi