diff options
Diffstat (limited to 'tests/openpgp/run-tests.scm')
-rw-r--r-- | tests/openpgp/run-tests.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/openpgp/run-tests.scm b/tests/openpgp/run-tests.scm index a7c282e5e..414641199 100644 --- a/tests/openpgp/run-tests.scm +++ b/tests/openpgp/run-tests.scm @@ -30,4 +30,5 @@ run-tests-parallel run-tests-sequential)) (tests (filter (lambda (arg) (not (string-prefix? arg "--"))) *args*))) - (runner (test::scm "setup.scm") (map test::scm tests))) + (runner (test::scm "setup.scm" "setup.scm") + (map (lambda (t) (test::scm t t)) tests))) |