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:
authorBarry Haddow <barry.haddow@gmail.com>2011-11-29 16:57:26 +0400
committerBarry Haddow <barry.haddow@gmail.com>2011-11-29 16:57:26 +0400
commitc09bc0c11cd8ec8ff58a0b3e9f399ca382e09363 (patch)
tree248e24027be00781b181b4699299f637f7e0f536 /cruise-control
parente02229b9e499807420a37bb52dc6652768974477 (diff)
Update regtest to use bjam
Diffstat (limited to 'cruise-control')
-rwxr-xr-xcruise-control/test_all_new_commits.sh5
1 files changed, 1 insertions, 4 deletions
diff --git a/cruise-control/test_all_new_commits.sh b/cruise-control/test_all_new_commits.sh
index e0e1f5ee8..378c7fb56 100755
--- a/cruise-control/test_all_new_commits.sh
+++ b/cruise-control/test_all_new_commits.sh
@@ -107,10 +107,7 @@ function run_single_test () {
echo "## regression tests" >> $longlog
if [ -z "$err" ]; then
- ./run-test-suite.perl &>> $longlog
- regtest_status=$?
- [ $regtest_status -eq 1 ] && die "Failed to run regression tests"
- [ $regtest_status -eq 2 ] && err="regression tests"
+ ../bjam $MCC_CONFIGURE_ARGS --with-regtest=$PWD/$(basename $regtest_file .tar.gz) >> $longlog 2>&1 || err="regression tests"
fi
cd ..