aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustus Winter <[email protected]>2016-10-25 15:06:05 +0000
committerJustus Winter <[email protected]>2016-10-25 15:06:05 +0000
commitf88f11a25665dca7490a09088aa24edf396e4c40 (patch)
treefa4f960da7bd5ec1b91d16533c6712cf0a6c88e9
parentdirmngr: Allow command VERSIONCHECK to handle 3 part version numbers. (diff)
downloadgnupg-f88f11a25665dca7490a09088aa24edf396e4c40.tar.gz
gnupg-f88f11a25665dca7490a09088aa24edf396e4c40.zip
tests: Do not autostart gpg-agents on teardown.
* tests/openpgp/defs.c (stop-agent): Use '--no-autostart' when calling gpg-connect-agent. Signed-off-by: Justus Winter <[email protected]>
-rw-r--r--tests/openpgp/defs.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/openpgp/defs.scm b/tests/openpgp/defs.scm
index 48ac46c03..c911ea38a 100644
--- a/tests/openpgp/defs.scm
+++ b/tests/openpgp/defs.scm
@@ -162,4 +162,5 @@
(echo "Stopping gpg-agent...")
(catch (echo "Warning: Removing socket directory failed.")
(call-popen `(,(tool 'gpgconf) --remove-socketdir) ""))
- (call-check `(,(tool 'gpg-connect-agent) --verbose killagent /bye)))
+ (call-check `(,(tool 'gpg-connect-agent) --verbose --no-autostart
+ killagent /bye)))