diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 18:35:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 18:35:28 +0000 |
commit | ea314d2f45c40a006c0104157013ab4b857f665f (patch) | |
tree | 3ef2971cb3675c318b8d9effd987854ad3f6d3e8 /tests/t-disappear-diverted-other/Makefile | |
parent | Initial commit. (diff) | |
download | dpkg-ea314d2f45c40a006c0104157013ab4b857f665f.tar.xz dpkg-ea314d2f45c40a006c0104157013ab4b857f665f.zip |
Adding upstream version 1.22.4.upstream/1.22.4
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | tests/t-disappear-diverted-other/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/t-disappear-diverted-other/Makefile b/tests/t-disappear-diverted-other/Makefile new file mode 100644 index 0000000..d483b9a --- /dev/null +++ b/tests/t-disappear-diverted-other/Makefile @@ -0,0 +1,28 @@ +TESTS_DEB := pkg-divert pkg-diverted pkg-replaces + +include ../Test.mk + +test-case: + # Test disappearing diverted package with a not contended pathname. + $(DPKG_INSTALL) pkg-divert.deb + $(DPKG_INSTALL) pkg-diverted.deb + $(DPKG_INSTALL) pkg-replaces.deb + # Should disappear because there is no contended pathname. + $(call pkg_is_not_installed,pkg-divert) + $(DPKG_PURGE) pkg-divert + $(DPKG_PURGE) pkg-diverted + $(DPKG_PURGE) pkg-replaces + : + # Test disappearing diverted package with a not contended pathname. + $(DPKG_INSTALL) pkg-divert.deb + $(DPKG_INSTALL) pkg-replaces.deb + # Should disappear because there is no contended pathname. + $(call pkg_is_not_installed,pkg-divert) + $(DPKG_PURGE) pkg-divert + $(DPKG_PURGE) pkg-replaces + +test-clean: + $(DPKG_PURGE) pkg-divert + $(DPKG_PURGE) pkg-diverted + $(DPKG_PURGE) pkg-replaces + |