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
This commit is contained in:
Dan Nicholson
2019-06-17 13:37:35 -05:00
committed by Atomic Bot
parent d0ec319b6b
commit d8649f4d56

View File

@ -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 () {