We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c61cb19 commit ce11be6Copy full SHA for ce11be6
tests/run_tests.sh
@@ -573,20 +573,31 @@ EOF
573
fi
574
575
576
+ nskipped=0
577
+ nfailed=0
578
+ nok=0
579
+ ntotal=0
580
+
581
FAILED=""
582
583
${FLAVOR}_init "$TESTS"
584
for tst in $TESTS; do
585
+ ntotal=$(($ntotal + 1))
586
if should_skip $tst; then
587
echo "SKIP: $tst"
588
+ nskipped=$(($nskipped + 1))
589
continue
590
591
if ! test_one $tst $FLAVOR; then
592
FAILED="${FAILED:+$FAILED }$tst"
593
+ nfailed=$(($nfailed + 1))
594
+ else
595
+ nok=$(($nok + 1))
596
597
done
598
${FLAVOR}_fini
599
600
+ echo "OK $nok FAIL $nfailed SKIP $nskipped TOTAL $ntotal"
601
if test -n "$FAILED"; then
602
echo "FAILED TESTS: $FAILED"
603
exit 1
0 commit comments