diff options
author | Ludovic Courtès | 2021-09-29 18:21:19 +0200 |
---|---|---|
committer | Ludovic Courtès | 2021-09-29 18:26:39 +0200 |
commit | 671e55bb3bbbb3467dee5d6e438ea897acda814e (patch) | |
tree | a74d75536f01fd0a2bf1a6e30be222a543aa1e47 /tests/readers/rss-2.test | |
parent | 632ff359c089892d55a15d29e7931bf0ce255d8e (diff) | |
download | skribilo-671e55bb3bbbb3467dee5d6e438ea897acda814e.tar.gz skribilo-671e55bb3bbbb3467dee5d6e438ea897acda814e.tar.lz skribilo-671e55bb3bbbb3467dee5d6e438ea897acda814e.zip |
build: Use SRFI-64 test suite driver as found in Guix.
This works around the fact that SRFI-64 in Guile 3.0.6+,
'test-runner-current' returns #f after 'test-end'. It also gives us a
more featureful test runner, where one can do things like:
make check TEST_LOG_DRIVER_FLAGS="--brief=no --show-duration=yes"
Reported by <soeren@soeren-tempel.net>.
* build-aux/test-driver.scm: New file.
* Makefile.am (EXTRA_DIST): Add it.
* tests/Makefile.am (TEST_LOG_DRIVER): New variable.
(TEST_LOG_COMPILER): New variable.
* tests/ast.test, tests/engines/info.test,
tests/location.test, tests/readers/rss-2.test,
tests/resolve.test: Remove call to 'exit'.
Diffstat (limited to 'tests/readers/rss-2.test')
-rw-r--r-- | tests/readers/rss-2.test | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/readers/rss-2.test b/tests/readers/rss-2.test index a0e5838..1b72d9f 100644 --- a/tests/readers/rss-2.test +++ b/tests/readers/rss-2.test @@ -1,6 +1,6 @@ ;;; Excercise RSS 2.0 reader. -*- Scheme -*- ;;; -;;; Copyright (C) 2008, 2009, 2012, 2020 Ludovic Courtès <ludo@gnu.org> +;;; Copyright (C) 2008, 2009, 2012, 2020, 2021 Ludovic Courtès <ludo@gnu.org> ;;; ;;; This file is part of Skribilo. ;;; @@ -148,5 +148,3 @@ (test-end "rss-2") -(exit (= (test-runner-fail-count (test-runner-current)) 0)) - |