diff options
author | Werner Koch <[email protected]> | 2017-08-08 11:47:00 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2017-08-08 11:47:00 +0000 |
commit | c2fbc80c643db372f16aed100393cd2d4de46979 (patch) | |
tree | 292fce6e1d89f4105a2c214d907a3d46ea4b4387 | |
parent | tests: Do not run all tests unless in maintainer mode. (diff) | |
download | libgpg-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.scm | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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) |