diff options
Diffstat (limited to 'tests/openpgp/issue2346.scm')
-rwxr-xr-x | tests/openpgp/issue2346.scm | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/tests/openpgp/issue2346.scm b/tests/openpgp/issue2346.scm index b33656608..cbe03f9b7 100755 --- a/tests/openpgp/issue2346.scm +++ b/tests/openpgp/issue2346.scm @@ -18,16 +18,11 @@ ;; along with this program; if not, see <http://www.gnu.org/licenses/>. (load (with-path "defs.scm")) +(setup-environment) (define key (in-srcdir "samplekeys/issue2346.gpg")) -(define old-home (getenv "GNUPGHOME")) -(with-temporary-working-directory - (file-copy (path-join old-home "gpg.conf") "gpg.conf") - (file-copy (path-join old-home "gpg-agent.conf") "gpg-agent.conf") - (setenv "GNUPGHOME" "." #t) - - (info "Checking import statistics (issue2346)...") - (let ((status (call-popen `(,@GPG --status-fd=1 --import ,key) ""))) - (unless (string-contains? status "IMPORT_RES 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0") - (error "Unexpected number of keys imported" status)))) +(info "Checking import statistics (issue2346)...") +(let ((status (call-popen `(,@GPG --status-fd=1 --import ,key) ""))) + (unless (string-contains? status "IMPORT_RES 1 0 1 0 0 0 0 0 0 1 1 0 0 0 0") + (error "Unexpected number of keys imported" status))) |