diff options
author | Werner Koch <wk@gnupg.org> | 2021-03-26 17:06:44 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2021-03-26 17:06:44 +0100 |
commit | a5e72b663b3649c939d32d6526b5e2b3347dedd9 (patch) | |
tree | fd85997aad2483722739d7964599204ce882b33e | |
parent | gpgconf: Fix another argv overflow if --homedir is used. (diff) | |
download | gnupg2-a5e72b663b3649c939d32d6526b5e2b3347dedd9.tar.xz gnupg2-a5e72b663b3649c939d32d6526b5e2b3347dedd9.zip |
tests: Make sure the built keyboxd is used by the tests.
* tests/openpgp/defs.scm (tool): Add keyboxd.
* tests/openpgp/setup.scm: Ditto.
Signed-off-by: Werner Koch <wk@gnupg.org>
-rw-r--r-- | tests/openpgp/defs.scm | 2 | ||||
-rwxr-xr-x | tests/openpgp/setup.scm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/openpgp/defs.scm b/tests/openpgp/defs.scm index 3f6248f9e..d26d38303 100644 --- a/tests/openpgp/defs.scm +++ b/tests/openpgp/defs.scm @@ -192,7 +192,7 @@ (define (tool which) (case which - ((gpg gpg-agent scdaemon gpgsm dirmngr) + ((gpg gpg-agent scdaemon gpgsm keyboxd dirmngr) (:gc:c:pgmname (assoc (symbol->string which) gpg-components))) (else (tool-hardcoded which)))) diff --git a/tests/openpgp/setup.scm b/tests/openpgp/setup.scm index 22c89a389..b92dc0701 100755 --- a/tests/openpgp/setup.scm +++ b/tests/openpgp/setup.scm @@ -38,7 +38,7 @@ (for-each (lambda (t) (log (pad t 25) (tool t))) - '(gpgconf gpg gpg-agent scdaemon gpgsm dirmngr gpg-connect-agent + '(gpgconf gpg gpg-agent scdaemon gpgsm keyboxd dirmngr gpg-connect-agent gpg-preset-passphrase gpgtar pinentry))) (setenv "GNUPGHOME" (getcwd) #t) |