diff options
Diffstat (limited to '')
-rw-r--r-- | tests/openpgp/all-tests.scm | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/tests/openpgp/all-tests.scm b/tests/openpgp/all-tests.scm index e12b175b9..046012cfa 100644 --- a/tests/openpgp/all-tests.scm +++ b/tests/openpgp/all-tests.scm @@ -45,7 +45,7 @@ (string-append "--" variant)))) (define setup-use-keyring (setup* "use-keyring")) - (define setup-extended-key-format (setup* "extended-key-format")) + (define setup-use-keyboxd (setup* "use-keyboxd")) (define all-tests (parse-makefile-expand "Makefile" @@ -55,24 +55,27 @@ (define tests (map (lambda (name) (test::scm setup - (path-join "tests" "openpgp" name) + (qualify (path-join "tests" "openpgp" name) "standard") (in-srcdir "tests" "openpgp" name))) all-tests)) (when *run-all-tests* (set! tests (append tests + ;; The second pass uses the keyboxd (map (lambda (name) - (test::scm setup-use-keyring + (test::scm setup-use-keyboxd (qualify (path-join "tests" "openpgp" name) - "use-keyring") + "keyboxd") (in-srcdir "tests" "openpgp" name) - "--use-keyring")) all-tests) + "--use-keyboxd")) all-tests) + ;; The third pass uses the legact pubring.gpg (map (lambda (name) - (test::scm setup-extended-key-format + (test::scm setup-use-keyring (qualify (path-join "tests" "openpgp" name) - "extended-key-format") + "keyring") (in-srcdir "tests" "openpgp" name) - "--extended-key-format")) all-tests)))) + "--use-keyring")) all-tests) + ))) tests) |