diff mbox series

testsuite: clarify testsuite report

Message ID 20191030112220.5396-1-luc.vanoostenryck@gmail.com (mailing list archive)
State Rejected, archived
Headers show
Series testsuite: clarify testsuite report | expand

Commit Message

Luc Van Oostenryck Oct. 30, 2019, 11:22 a.m. UTC
The known-to-fail report of the summary 'line' is
displayed on a second line.

This is somehow annoying, so reformat slightly the summary
to hold in a single line and hopely be clearer too.

Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
---
 validation/test-suite | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/validation/test-suite b/validation/test-suite
index 64a3e08fb..d8ec577d4 100755
--- a/validation/test-suite
+++ b/validation/test-suite
@@ -438,10 +438,7 @@  do_test_suite()
 
 	# prints some numbers
 	tests_nr=$(($ok_tests + $ko_tests))
-	echo "$OK: out of $tests_nr tests, $ok_tests passed, $ko_tests failed"
-	if [ "$known_ko_tests" -ne 0 ]; then
-		echo "	$known_ko_tests of them are known to fail"
-	fi
+	echo "$OK: passed tests: $ok_tests/$tests_nr, failed: $ko_tests/$known_ko_tests"
 	if [ "$unhandled_tests" -ne "0" ]; then
 		echo "	$unhandled_tests tests could not be handled by $prog_name"
 	fi