Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Make final result printout more verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
joergboe committed Jan 11, 2020
1 parent d2c1e1e commit 6cdd6ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/runTTF
Original file line number Diff line number Diff line change
Expand Up @@ -668,14 +668,14 @@ fi

#print result lists
printInfo "**** END Collection collection='$TTRO_collection' END ********************"
for x in CASE_EXECUTE CASE_SKIP CASE_FAILURE CASE_ERROR CASE_SUCCESS SUITE_EXECUTE SUITE_SKIP SUITE_ERROR; do
for x in CASE_EXECUTE CASE_SUCCESS CASE_SKIP CASE_FAILURE CASE_ERROR SUITE_EXECUTE SUITE_SKIP SUITE_ERROR; do
tmp="${TTRO_workDir}/${x}"
eval "${x}Count=0"
if isVerbose || [[ $x == *_FAILURE || $x == *_ERROR ]]; then echo "**** $x List : ****"; fi
if isVerbose || [[ $x == *_SUCCESS || $x == *_SKIP || $x == *_FAILURE || $x == *_ERROR ]]; then echo; echo "**** $x List : ************************"; fi
if [[ -e ${tmp} ]]; then
{
while read; do
if isVerbose || [[ $x == *_FAILURE || $x == *_ERROR ]]; then echo "$REPLY "; fi
if isVerbose || [[ $x == *_SUCCESS || $x == *_SKIP || $x == *_FAILURE || $x == *_ERROR ]]; then echo "$REPLY "; fi
if [[ $REPLY != \#* ]]; then
eval "${x}Count=\$((\${x}Count+1))"
fi
Expand Down

0 comments on commit 6cdd6ac

Please sign in to comment.