Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Matusov <ematusov@ebay.com>2015-11-19 18:03:12 +0300
committerEvgeny Matusov <ematusov@ebay.com>2015-11-19 18:03:12 +0300
commit6c7e69996f5ac1be846d0c04f7cee6444ebfdbb5 (patch)
tree6c77773706822b94bbd3aba88aa1adf1a1a5291a /run-regtests.sh
parentc60d23ecb361bec5470d8286d2f789f94bdd601f (diff)
updated the regression testing wrapper script
Diffstat (limited to 'run-regtests.sh')
-rwxr-xr-xrun-regtests.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/run-regtests.sh b/run-regtests.sh
index e4120ea26..2cb73aa2d 100755
--- a/run-regtests.sh
+++ b/run-regtests.sh
@@ -4,8 +4,8 @@
set -e -o pipefail
-git submodule init
-git submodule update regtest
+# git submodule init
+# git submodule update regtest
if [ "$RECOMPILE" == "NO" ] ; then
RECOMPILE=
@@ -14,9 +14,9 @@ else
fi
# test compilation without xmlrpc-c
-# ./bjam -j$(nproc) --with-irstlm=./opt --with-boost=./opt --with-cmph=./opt --no-xmlrpc-c --with-regtest=./regtest $RECOMPILE -q $@ || exit $?
+./bjam -j$(nproc) --with-irstlm=./opt --with-boost=./opt --with-cmph=./opt --no-xmlrpc-c --with-regtest=./regtest $RECOMPILE -q $@ || exit $?
# test compilation with xmlrpc-c
-if [ ./regression-testing/run-single-test.perl --server --startuptest ] ; then
+if ./regression-testing/run-single-test.perl --server --startuptest ; then
./bjam -j$(nproc) --with-irstlm=./opt --with-boost=./opt --with-cmph=./opt --with-xmlrpc-c=./opt --with-regtest=./regtest $RECOMPILE -q $@
fi