aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2017-08-08 11:47:00 +0000
committerWerner Koch <[email protected]>2017-08-08 11:47:00 +0000
commitc2fbc80c643db372f16aed100393cd2d4de46979 (patch)
tree292fce6e1d89f4105a2c214d907a3d46ea4b4387
parenttests: Do not run all tests unless in maintainer mode. (diff)
downloadlibgpg-error-c2fbc80c643db372f16aed100393cd2d4de46979.tar.gz
libgpg-error-c2fbc80c643db372f16aed100393cd2d4de46979.zip
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 <[email protected]>
-rw-r--r--tests.scm2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests.scm b/tests.scm
index 40ba7e3..5141002 100644
--- a/tests.scm
+++ b/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)