diff options
author | Justus Winter <[email protected]> | 2017-06-19 08:17:57 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2017-06-19 14:51:26 +0000 |
commit | b766d3d1034e6068a91755ada68f7f7dbe2943b6 (patch) | |
tree | 50a64fb975c749f019e999f55d1cf46e010290fa /tests/openpgp/defs.scm | |
parent | Change license of some files to LGPLv2.1. (diff) | |
download | gnupg-b766d3d1034e6068a91755ada68f7f7dbe2943b6.tar.gz gnupg-b766d3d1034e6068a91755ada68f7f7dbe2943b6.zip |
tests: Run the OpenPGP tests using the new extended key format.
* tests/openpgp/all-tests.scm: Generalize a bit, and also add a
variant that uses the new extended key format.
* tests/openpgp/defs.scm (create-gpghome): Conditionally enable the
new extended key format.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | tests/openpgp/defs.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/openpgp/defs.scm b/tests/openpgp/defs.scm index a61e6c318..50976b9eb 100644 --- a/tests/openpgp/defs.scm +++ b/tests/openpgp/defs.scm @@ -348,6 +348,8 @@ "allow-preset-passphrase" "no-grab" "enable-ssh-support" + (if (flag "--extended-key-format" *args*) + "enable-extended-key-format" "#enable-extended-key-format") (string-append "pinentry-program " (tool 'pinentry)) (string-append "scdaemon-program " (tool 'scdaemon)) )) |