Kill gpg agent in package-test.el to avoid a race
authorRob Browning <rlb@defaultvalue.org>
Mon, 10 Oct 2016 22:35:56 +0000 (17:35 -0500)
committerRob Browning <rlb@defaultvalue.org>
Sun, 23 Jun 2024 22:22:49 +0000 (17:22 -0500)
commitddf051fb7c817921827feb2a90a7c60dda1bf54b
tree31e456268d4b7d7e8d4dc09dd52e087bdd93689c
parent8b9b66cabea1f48698ea3c8e6c66f9e9f6110965
Kill gpg agent in package-test.el to avoid a race

package-test.el should no longer fail during clean up.

* Previously a delete-directories call raced with the gpg agent's own
  cleanup process (presumably triggered by the first deletion of one of
  the agent's sockets).  As a result, it looks like the agent might
  delete one of its sockets after delete-directories had decided to
  delete the socket, but before it made the attempt, causing an
  exception.

* To fix the problem, explicitly ask gpg-connect-agent to kill the agent
  before attempting to delete the gnupg home directory, and then delete
  via "rm -rf" to ignore any vanishing files.
test/lisp/emacs-lisp/package-tests.el