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:
-rwxr-xr-xcruise-control/test_all_new_commits.sh27
1 files changed, 13 insertions, 14 deletions
diff --git a/cruise-control/test_all_new_commits.sh b/cruise-control/test_all_new_commits.sh
index 7f7cdc10c..ec8c29cad 100755
--- a/cruise-control/test_all_new_commits.sh
+++ b/cruise-control/test_all_new_commits.sh
@@ -145,22 +145,21 @@ function run_single_test () {
return 1;
fi
}
-
for i in $MCC_SCAN_BRANCHES; do
- git rev-list $i > $(echo -n $i | sed 's/\//_/g').revlist
+ git rev-list $i > "$LOGDIR/logs/$configname/$(echo -n $i | sed 's/\//_/g').revlist"
done
#### Main loop over all commits
-( cd "$WORKDIR" && git rev-list $MCC_SCAN_BRANCHES ) \
-| while read commit; do
- test_ok="$LOGDIR/logs/$configname/$commit.OK"
- if [ ! -e "$test_ok" ]; then
- run_single_test $commit && warn "Commit $commit test ok, stopping" && break
- warn "Commit $commit test failed, continuing"
- else
- warn "Reached a successfully tested commit ($commit), stopping"
- break
- fi
+for i in $MCC_SCAN_BRANCHES; do
+ git rev-list $i \
+ | while read commit; do
+ test_ok="$LOGDIR/logs/$configname/$commit.OK"
+ if [ ! -e "$test_ok" ]; then
+ run_single_test $commit && warn "Commit $commit test ok, stopping" && break
+ warn "Commit $commit test failed, continuing"
+ else
+ warn "Reached a successfully tested commit ($commit), stopping"
+ break
+ fi
+ done
done
-
-