diff options
Diffstat (limited to 'tests/t-conffile-orphan')
8 files changed, 42 insertions, 0 deletions
diff --git a/tests/t-conffile-orphan/Makefile b/tests/t-conffile-orphan/Makefile new file mode 100644 index 0000000..1f51ccb --- /dev/null +++ b/tests/t-conffile-orphan/Makefile @@ -0,0 +1,14 @@ +TESTS_DEB := pkg-conff-orphan-0 pkg-conff-orphan-1 pkg-conff-takeover + +include ../Test.mk + +test-case: + $(DPKG_INSTALL) pkg-conff-orphan-0.deb + $(DPKG_INSTALL) pkg-conff-orphan-1.deb + # test if the other package can takeover the orphan conffile + $(DPKG_INSTALL) pkg-conff-takeover.deb + +test-clean: + $(DPKG_PURGE) pkg-conff-orphan + $(DPKG_PURGE) pkg-conff-takeover + diff --git a/tests/t-conffile-orphan/pkg-conff-orphan-0/DEBIAN/conffiles b/tests/t-conffile-orphan/pkg-conff-orphan-0/DEBIAN/conffiles new file mode 100644 index 0000000..4fad7e9 --- /dev/null +++ b/tests/t-conffile-orphan/pkg-conff-orphan-0/DEBIAN/conffiles @@ -0,0 +1 @@ +/test-conffile diff --git a/tests/t-conffile-orphan/pkg-conff-orphan-0/DEBIAN/control b/tests/t-conffile-orphan/pkg-conff-orphan-0/DEBIAN/control new file mode 100644 index 0000000..e147450 --- /dev/null +++ b/tests/t-conffile-orphan/pkg-conff-orphan-0/DEBIAN/control @@ -0,0 +1,8 @@ +Package: pkg-conff-orphan +Version: 0 +Section: test +Priority: extra +Maintainer: Dpkg Developers <debian-dpkg@lists.debian.org> +Architecture: all +Description: test package - conffile oprhan + diff --git a/tests/t-conffile-orphan/pkg-conff-orphan-0/test-conffile b/tests/t-conffile-orphan/pkg-conff-orphan-0/test-conffile new file mode 100644 index 0000000..6fbc8b5 --- /dev/null +++ b/tests/t-conffile-orphan/pkg-conff-orphan-0/test-conffile @@ -0,0 +1 @@ +test init diff --git a/tests/t-conffile-orphan/pkg-conff-orphan-1/DEBIAN/control b/tests/t-conffile-orphan/pkg-conff-orphan-1/DEBIAN/control new file mode 100644 index 0000000..691051b --- /dev/null +++ b/tests/t-conffile-orphan/pkg-conff-orphan-1/DEBIAN/control @@ -0,0 +1,8 @@ +Package: pkg-conff-orphan +Version: 1 +Section: test +Priority: extra +Maintainer: Dpkg Developers <debian-dpkg@lists.debian.org> +Architecture: all +Description: test package - conffile orphan + diff --git a/tests/t-conffile-orphan/pkg-conff-takeover/DEBIAN/conffiles b/tests/t-conffile-orphan/pkg-conff-takeover/DEBIAN/conffiles new file mode 100644 index 0000000..4fad7e9 --- /dev/null +++ b/tests/t-conffile-orphan/pkg-conff-takeover/DEBIAN/conffiles @@ -0,0 +1 @@ +/test-conffile diff --git a/tests/t-conffile-orphan/pkg-conff-takeover/DEBIAN/control b/tests/t-conffile-orphan/pkg-conff-takeover/DEBIAN/control new file mode 100644 index 0000000..d5dd7f1 --- /dev/null +++ b/tests/t-conffile-orphan/pkg-conff-takeover/DEBIAN/control @@ -0,0 +1,8 @@ +Package: pkg-conff-takeover +Version: 0 +Section: test +Priority: extra +Maintainer: Dpkg Developers <debian-dpkg@lists.debian.org> +Architecture: all +Description: test package - conffile oprhan takeover + diff --git a/tests/t-conffile-orphan/pkg-conff-takeover/test-conffile b/tests/t-conffile-orphan/pkg-conff-takeover/test-conffile new file mode 100644 index 0000000..35f4da8 --- /dev/null +++ b/tests/t-conffile-orphan/pkg-conff-takeover/test-conffile @@ -0,0 +1 @@ +test end |