diff options
author | Werner Koch <[email protected]> | 2021-10-01 13:05:01 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2021-10-01 13:05:01 +0000 |
commit | 84fcd8e6eb7e0786399e1f6461c3f60b0db2d070 (patch) | |
tree | d83132397e795540609d96e502a49e9a1fda61b1 /tests/tpm2dtests | |
parent | build: Prepare for using installed versions for tests. (diff) | |
download | gnupg-84fcd8e6eb7e0786399e1f6461c3f60b0db2d070.tar.gz gnupg-84fcd8e6eb7e0786399e1f6461c3f60b0db2d070.zip |
tests: Use the new gpgconf.ctl based method.
* tests/openpgp/defs.scm: We expect that stuff is now installed.
(tools): Fix the names.
(intsalled?, bin-prefix): Remove.
(tool-hardcoded): Simplify.
(gpg-conf'): Simplify.
(GNUPG_BUILDDIR): Do not anymore set this envvar.
* tests/tpm2dtests/defs.scm: Ditto.
--
This simplifies things a bit.
Diffstat (limited to 'tests/tpm2dtests')
-rw-r--r-- | tests/tpm2dtests/defs.scm | 29 |
1 files changed, 10 insertions, 19 deletions
diff --git a/tests/tpm2dtests/defs.scm b/tests/tpm2dtests/defs.scm index 2a0910945..eb840206f 100644 --- a/tests/tpm2dtests/defs.scm +++ b/tests/tpm2dtests/defs.scm @@ -61,26 +61,22 @@ (assert (equal? (percent-encode "foob%61r") "foob%2561r")) (define tools - '((gpgv "GPGV" "g10/gpgv") - (gpg-connect-agent "GPG_CONNECT_AGENT" "tools/gpg-connect-agent") - (gpgconf "GPGCONF" "tools/gpgconf") + '((gpgv "GPGV" "bin/gpgv") + (gpg-connect-agent "GPG_CONNECT_AGENT" "bin/gpg-connect-agent") + (gpgconf "GPGCONF" "bin/gpgconf") (gpg-preset-passphrase "GPG_PRESET_PASSPHRASE" - "agent/gpg-preset-passphrase") - (gpgtar "GPGTAR" "tools/gpgtar") - (gpg-zip "GPGZIP" "tools/gpg-zip") - (pinentry "PINENTRY" "tests/openpgp/fake-pinentry") - (tpm2daemon "TPM2DAEMON" "tpm2d/tpm2daemon"))) - -(define bin-prefix (getenv "BIN_PREFIX")) -(define installed? (not (string=? "" bin-prefix))) + "libexec/gpg-preset-passphrase") + (gpgtar "GPGTAR" "bin/gpgtar") + (tpm2daemon "TPM2DAEMON" "libexec/tpm2daemon") + (pinentry "PINENTRY" "openpgp/fake-pinentry"))) + (define with-valgrind? (not (string=? (getenv "with_valgrind") ""))) (define (tool-hardcoded which) (let ((t (assoc which tools))) (getenv' (cadr t) - (qualify (if installed? - (string-append bin-prefix "/" (basename (caddr t))) - (string-append (getenv "objdir") "/" (caddr t))))))) + (qualify (string-append (getenv "GNUPG_BUILD_ROOT") + "/" (caddr t)))))) ;; You can splice VALGRIND into your argument vector to run programs ;; under valgrind. For example, to run valgrind on gpg, you may want @@ -92,15 +88,10 @@ '("/usr/bin/valgrind" -q --leak-check=no --track-origins=yes --error-exitcode=154 --exit-on-first-error=yes)) -(unless installed? - (setenv "GNUPG_BUILDDIR" (getenv "objdir") #t)) - (define (gpg-conf . args) (gpg-conf' "" args)) (define (gpg-conf' input args) (let ((s (call-popen `(,(tool-hardcoded 'gpgconf) - ,@(if installed? '() - (list '--build-prefix (getenv "objdir"))) ,@args) input))) (map (lambda (line) (map percent-decode (string-split line #\:))) (string-split-newlines s)))) |