From bc9630e8265c00f1c6ed04e39f58e63b565e4934 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Thu, 29 Aug 2013 10:27:26 -0700 Subject: Restore --show-diff to partest-ack. Looks like that issue was operator error. However partest option --show-log really has gone missing. --- tools/partest-ack | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'tools') diff --git a/tools/partest-ack b/tools/partest-ack index 551f92684f..c88793c2b5 100755 --- a/tools/partest-ack +++ b/tools/partest-ack @@ -6,6 +6,7 @@ declare quiet failed update partest_debug declare cotouched since sortCommand declare -a ack_args partest_args scalac_args +partest_args=( --show-diff ) base="$(cd "$(dirname "$0")"/.. && pwd)" cd "$base" || { echo "Could not change to base directory $base" && exit 1; } filesdir="test/files" @@ -134,8 +135,8 @@ count=$(echo $(echo "$paths" | wc -w)) # Output a command line which will re-run these same tests. echo "# $count tests to run." -printf "%-52s %s\n" "$base/test/partest ${partest_args[@]}" "\\" +printf "%-52s %s\n" "$base/test/partest ${partest_args[*]}" "\\" for path in $paths; do printf " %-50s %s\n" "$path" "\\"; done -echo ' ""' +echo "" -test/partest "${partest_args[@]}" $paths +test/partest ${partest_args[*]} $paths -- cgit v1.2.3