From 4d484cffec175cd8332cc1bcebea261f3e942736 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Mon, 9 Apr 2012 21:21:20 -0500 Subject: [PATCH] run-tests: run more tests in parallel This forces us to save on screen estate... Signed-off-by: Johannes Schindelin --- share/msysGit/run-tests.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/share/msysGit/run-tests.sh b/share/msysGit/run-tests.sh index 9289b7d7..c7d87b56 100755 --- a/share/msysGit/run-tests.sh +++ b/share/msysGit/run-tests.sh @@ -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 () { @@ -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 -- 2.11.4.GIT