From d8649f4d5618b0a64988aa092bb566b5c50174e6 Mon Sep 17 00:00:00 2001 From: Dan Nicholson Date: Mon, 17 Jun 2019 13:37:35 -0500 Subject: [PATCH] tests/libtest: Allow specifying GPG homedir to cleanup In case the tests want to use a custom GPG homedir, allow passing in the homedir to use when cleaning up a running gpg-agent. Closes: #1872 Approved by: cgwalters --- tests/libtest.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/libtest.sh b/tests/libtest.sh index e0022512..5f381c67 100755 --- a/tests/libtest.sh +++ b/tests/libtest.sh @@ -601,7 +601,8 @@ has_gpgme () { } libtest_cleanup_gpg () { - gpg-connect-agent --homedir ${test_tmpdir}/gpghome killagent /bye || true + local gpg_homedir=${1:-${test_tmpdir}/gpghome} + gpg-connect-agent --homedir "${gpg_homedir}" killagent /bye || true } is_bare_user_only_repo () {