test: Add test name to summary output

This commit is contained in:
Raymond Ha 2022-12-07 10:47:08 -08:00 committed by Stephan Seitz
parent eadfcad580
commit 30a45fc76b

View file

@ -10,7 +10,7 @@ run() {
if [[ $2 = '--summary' ]]; then
## really simple results summary by filtering plenary busted output
run tests/$1 2> /dev/null | grep -E '^\S*(Success|Fail(ed)?|Errors?)\s*:'
run tests/$1 2> /dev/null | grep -E '^\S*(Testing|Success|Failed|Errors)\s*:'
else
run tests/$1
fi