Skip to content

Commit

Permalink
run-tests: run more tests in parallel
Browse files Browse the repository at this point in the history
This forces us to save on screen estate...

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  • Loading branch information
dscho committed Apr 10, 2012
1 parent c061f51 commit 4d484cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions share/msysGit/run-tests.sh
Expand Up @@ -9,7 +9,7 @@ export GIT_SKIP_TESTS='
export NO_SVN_TESTS=t
case " $*" in
*' -j'*) ;;
*) PARALLEL_MAKE=-j5;;
*) PARALLEL_MAKE=-j15;;
esac

generate_skip_list () {
Expand Down Expand Up @@ -75,8 +75,8 @@ echo make $PARALLEL_MAKE &&
"*** t"*)
TEST_NAME=$(get_test_name "$line")
CURRENT_TESTS="$CURRENT_TESTS $TEST_NAME"
printf "Currently running $(echo "$CURRENT_TESTS" |
sed 's/-[^ ]*//g')\\r"
printf "$(echo "$CURRENT_TESTS" |
sed 's/t\([0-9]*\)-[^ ]*/\1/g')\\r"
;;
'* passed'*|'# passed'*)
get_finished_tests
Expand Down

0 comments on commit 4d484cf

Please sign in to comment.