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-conffile-normal | |
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 'tests/t-conffile-normal')
4 files changed, 23 insertions, 0 deletions
diff --git a/tests/t-conffile-normal/Makefile b/tests/t-conffile-normal/Makefile new file mode 100644 index 0000000..52f29c7 --- /dev/null +++ b/tests/t-conffile-normal/Makefile @@ -0,0 +1,15 @@ +TESTS_DEB := pkg-conffile + +include ../Test.mk + +test-case: + $(DPKG_INSTALL) pkg-conffile.deb + test -f "$(DPKG_INSTDIR)/test-dir/test-conffile" + $(DPKG_REMOVE) pkg-conffile + $(DPKG_PURGE) pkg-conffile + test ! -f "$(DPKG_INSTDIR)/test-dir/test-conffile" + test ! -d "$(DPKG_INSTDIR)/test-dir" + +test-clean: + $(DPKG_PURGE) pkg-conffile + $(BEROOT) $(RM) -rf "$(DPKG_INSTDIR)/test-dir" diff --git a/tests/t-conffile-normal/pkg-conffile/DEBIAN/conffiles b/tests/t-conffile-normal/pkg-conffile/DEBIAN/conffiles new file mode 100644 index 0000000..6d57c35 --- /dev/null +++ b/tests/t-conffile-normal/pkg-conffile/DEBIAN/conffiles @@ -0,0 +1 @@ +/test-dir/test-conffile diff --git a/tests/t-conffile-normal/pkg-conffile/DEBIAN/control b/tests/t-conffile-normal/pkg-conffile/DEBIAN/control new file mode 100644 index 0000000..6dcdeb8 --- /dev/null +++ b/tests/t-conffile-normal/pkg-conffile/DEBIAN/control @@ -0,0 +1,7 @@ +Package: pkg-conffile +Version: 0 +Section: test +Priority: extra +Maintainer: Dpkg Developers <debian-dpkg@lists.debian.org> +Architecture: all +Description: test package - conffile inside directory diff --git a/tests/t-conffile-normal/pkg-conffile/test-dir/test-conffile b/tests/t-conffile-normal/pkg-conffile/test-dir/test-conffile new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/tests/t-conffile-normal/pkg-conffile/test-dir/test-conffile |