diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 14:58:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 14:58:51 +0000 |
commit | cbffab246997fb5a06211dfb706b54e5ae5bb59f (patch) | |
tree | 0573c5d96f58d74d76a49c0f2a70398e389a36d3 /tests/t-triggers-path/Makefile | |
parent | Initial commit. (diff) | |
download | dpkg-upstream.tar.xz dpkg-upstream.zip |
Adding upstream version 1.21.22.upstream/1.21.22upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | tests/t-triggers-path/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/t-triggers-path/Makefile b/tests/t-triggers-path/Makefile new file mode 100644 index 0000000..c211204 --- /dev/null +++ b/tests/t-triggers-path/Makefile @@ -0,0 +1,26 @@ +TESTS_DEB := pkg-interest pkg-trigger-conffile pkg-trigger-cmd + +include ../Test.mk + +test-case: + $(DPKG_INSTALL) pkg-interest.deb + + # Test that the trigger gets activated on conffile installation + $(DPKG_UNPACK) pkg-trigger-conffile.deb + test -e "$(DPKG_INSTDIR)/test-triggered-cmd" && $(BEROOT) rm -f "$(DPKG_INSTDIR)/test-triggered-cmd" + $(DPKG_CONFIGURE) pkg-trigger-conffile + test -e "$(DPKG_INSTDIR)/test-triggered-file" && $(BEROOT) rm -f "$(DPKG_INSTDIR)/test-triggered-file" + $(DPKG_PURGE) pkg-trigger-conffile + + # Test that the trigger gets activated on explicit file request + $(DPKG_INSTALL) pkg-trigger-cmd.deb + test -e "$(DPKG_INSTDIR)/test-triggered-cmd" && $(BEROOT) rm -f "$(DPKG_INSTDIR)/test-triggered-cmd" + $(DPKG_PURGE) pkg-trigger-cmd + + # Cleanup. + $(DPKG_PURGE) pkg-interest + +test-clean: + $(BEROOT) rm -f "$(DPKG_INSTDIR)/test-triggered-cmd" "$(DPKG_INSTDIR)/test-triggered-file" + -$(DPKG_PURGE) pkg-interest + -$(DPKG_PURGE) pkg-trigger-conffile pkg-trigger-cmd |