summaryrefslogtreecommitdiffstats
path: root/tests/migrations
diff options
context:
space:
mode:
authorJustus Winter <justus@g10code.com>2017-04-11 10:46:09 +0200
committerJustus Winter <justus@g10code.com>2017-04-11 11:37:02 +0200
commit1b28d9dbe0260b2a4645c4b5caae11d9f375c942 (patch)
tree87b34102e92b33e7de9e08aac7178fa3dfd75e1a /tests/migrations
parenttests: Move common functionality. (diff)
downloadgnupg2-1b28d9dbe0260b2a4645c4b5caae11d9f375c942.tar.xz
gnupg2-1b28d9dbe0260b2a4645c4b5caae11d9f375c942.zip
tests: Make tests more robust.
* tests/openpgp/defs.scm (have-opt-always-trust): Execute in empty ephemeral home directory. This prevents gpg from picking up the configuration from the current gnupghome (if any). * tests/migrations/common.scm (untar-armored): Likewise. Signed-off-by: Justus Winter <justus@g10code.com>
Diffstat (limited to 'tests/migrations')
-rw-r--r--tests/migrations/common.scm9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/migrations/common.scm b/tests/migrations/common.scm
index fa8f1295a..cba659024 100644
--- a/tests/migrations/common.scm
+++ b/tests/migrations/common.scm
@@ -39,10 +39,11 @@
(define GPGTAR (path-join (getenv "objdir") "tools" (qualify "gpgtar")))
(define (untar-armored source-name)
- (pipe:do
- (pipe:open source-name (logior O_RDONLY O_BINARY))
- (pipe:spawn `(,@GPG --dearmor))
- (pipe:spawn `(,GPGTAR --extract --directory=. -))))
+ (with-ephemeral-home-directory (lambda ())
+ (pipe:do
+ (pipe:open source-name (logior O_RDONLY O_BINARY))
+ (pipe:spawn `(,@GPG --dearmor))
+ (pipe:spawn `(,GPGTAR --extract --directory=. -)))))
(define (run-test message src-tarball test)
(catch (skip "gpgtar not built")