mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +01:00
tests: Fix plain invocation of "make check".
* tests/openpgp/run-tests.scm: Check if *args* is null or not. -- Fixes-commit: ba2f2085a95be47a06ac6ba75a4c7def7c6599b2 Signed-off-by: NIIBE Yutaka <gniibe@fsij.org>
This commit is contained in:
parent
602c37ac06
commit
792374edb6
@ -44,7 +44,8 @@
|
||||
(string-append "--" variant))))
|
||||
|
||||
(define setup-use-keyboxd (setup* "use-keyboxd"))
|
||||
(define use-keyboxd? (or (string=? "--use-keyboxd" (car *args*))
|
||||
(define use-keyboxd? (or (and (not (null? *args*))
|
||||
(string=? "--use-keyboxd" (car *args*)))
|
||||
(string=? "keyboxd" (getenv "GPGSCM_TEST_VARIANT"))))
|
||||
|
||||
(define tests (filter (lambda (arg) (not (string-prefix? arg "--"))) *args*))
|
||||
|
Loading…
x
Reference in New Issue
Block a user