From f88f11a25665dca7490a09088aa24edf396e4c40 Mon Sep 17 00:00:00 2001 From: Justus Winter Date: Tue, 25 Oct 2016 17:06:05 +0200 Subject: [PATCH] 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 --- tests/openpgp/defs.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)))