debian/rules: clean up stale gpg-agent processes after testing
This commit is contained in:
parent
bbac523213
commit
00272963ef
|
|
@ -9,6 +9,7 @@ ostree (2016.4-1) UNRELEASED; urgency=medium
|
|||
* Fix ITP bug number in changelog (was #813308, should have been #697477)
|
||||
* debian/control: build-depend on attr, for the tests (only required if
|
||||
/var/tmp supports extended attributes)
|
||||
* debian/rules: clean up stale gpg-agent processes after testing
|
||||
* debian/rules: warn if there are leftover daemon processes after testing
|
||||
* debian/patches: add patches to get the build-time tests passing under
|
||||
sbuild
|
||||
|
|
|
|||
|
|
@ -26,6 +26,8 @@ override_dh_auto_configure:
|
|||
|
||||
override_dh_auto_test:
|
||||
dh_auto_test
|
||||
# One test creates multiple GPG homedirs, each with its own agent
|
||||
pkill --full "gpg-agent --homedir /var/tmp/tap-test\\.[^/]+/repo/tmp/ostree-gpg-[^/]+ " || :
|
||||
if pgrep lt-ostree || pgrep --full "gpg-agent --homedir /var/tmp/tap-test."; then \
|
||||
echo "WARNING: daemon processes were leaked"; \
|
||||
pgrep gpg-agent | xargs --no-run-if-empty ps ww; \
|
||||
|
|
|
|||
Loading…
Reference in New Issue