From 0bd19dae1161a71053d794e4f75e66f70445f9f0 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Tue, 8 Aug 2017 13:47:00 +0200 Subject: [PATCH] gpgscm: Make the test summary stand out * tests/gpgscm/tests.scm (test-pool): Add delimiter lines. -- This is to make those summaries a bit more simlar to those from automake. Signed-off-by: Werner Koch --- tests/gpgscm/tests.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/gpgscm/tests.scm b/tests/gpgscm/tests.scm index 40ba7e394..51410020e 100644 --- a/tests/gpgscm/tests.scm +++ b/tests/gpgscm/tests.scm @@ -613,6 +613,7 @@ (xfailed (filter-tests 'XFAIL)) (xpassed (filter-tests 'XPASS)) (skipped (filter-tests 'SKIP))) + (echo "===================") (echo (length procs) "tests run," (length (filter-tests 'PASS)) "succeeded," (length failed) "failed," @@ -623,6 +624,7 @@ (print-tests xfailed "Expectedly failed tests:") (print-tests xpassed "Unexpectedly passed tests:") (print-tests skipped "Skipped tests:") + (echo "===================") (+ (length failed) (length xpassed)))) (define (xml)