Jens Lehmann <Jens.Lehmann@xxxxxx> writes: > Maybe I'm missing something completely obvious, but I always have a hard > time finding out which test scripts did fail in a test run with -j30. I run "ls -d t/trash*" for that ;-) > + if test $value != 0; then > + testnum=$(echo $file | cut -b 14-18) > + failed_tests="$failed_tests $testnum" > + fi Somehow "cut" here feels dirty, as it hardcodes a mysterious offset that cannot be guessed without knowing what string it is cutting from by looking at t/Makefile. testnum=$(expr "$file" : 'test-results/\(t[0-9]*\)-') -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html