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-failinst-failrm | |
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-failinst-failrm')
5 files changed, 58 insertions, 0 deletions
diff --git a/tests/t-failinst-failrm/Makefile b/tests/t-failinst-failrm/Makefile new file mode 100644 index 0000000..325c7ef --- /dev/null +++ b/tests/t-failinst-failrm/Makefile @@ -0,0 +1,12 @@ +TESTS_DEB := pkg-failinst-failrm-0 pkg-failinst-failrm-1 + +include ../Test.mk + +test-case: + -$(DPKG_INSTALL) pkg-failinst-failrm-0.deb + $(call pkg_status_is,pkg-failinst-failrm,install ok half-configured) + +test-clean: + # Upgrade to a working version to allow the purge. + -$(DPKG_INSTALL) pkg-failinst-failrm-1.deb + $(DPKG_PURGE) pkg-failinst-failrm diff --git a/tests/t-failinst-failrm/pkg-failinst-failrm-0/DEBIAN/control b/tests/t-failinst-failrm/pkg-failinst-failrm-0/DEBIAN/control new file mode 100644 index 0000000..1230320 --- /dev/null +++ b/tests/t-failinst-failrm/pkg-failinst-failrm-0/DEBIAN/control @@ -0,0 +1,9 @@ +Package: pkg-failinst-failrm +Version: 0 +Section: test +Priority: extra +Maintainer: Dpkg Developers <debian-dpkg@lists.debian.org> +Architecture: all +Description: test package - #432893 + postinst-fail + prerm-fail diff --git a/tests/t-failinst-failrm/pkg-failinst-failrm-0/DEBIAN/postinst b/tests/t-failinst-failrm/pkg-failinst-failrm-0/DEBIAN/postinst new file mode 100755 index 0000000..b35b197 --- /dev/null +++ b/tests/t-failinst-failrm/pkg-failinst-failrm-0/DEBIAN/postinst @@ -0,0 +1,15 @@ +#!/bin/sh + +case "$1" in + configure) + exit 1 + ;; + abort-upgrade|abort-deconfigure|abort-remove) + ;; + *) + echo "$0 called with unknown argument '$1'" 1>&2 + exit 1 + ;; +esac + +exit 0 diff --git a/tests/t-failinst-failrm/pkg-failinst-failrm-0/DEBIAN/prerm b/tests/t-failinst-failrm/pkg-failinst-failrm-0/DEBIAN/prerm new file mode 100755 index 0000000..0abf6fb --- /dev/null +++ b/tests/t-failinst-failrm/pkg-failinst-failrm-0/DEBIAN/prerm @@ -0,0 +1,15 @@ +#!/bin/sh + +case "$1" in + remove) + exit 1 + ;; + purge|upgrade|failed-upgrade|disappear|abort-install|abort-upgrade) + ;; + *) + echo "$0 called with unknown argument '$1'" 1>&2 + exit 1 + ;; +esac + +exit 0 diff --git a/tests/t-failinst-failrm/pkg-failinst-failrm-1/DEBIAN/control b/tests/t-failinst-failrm/pkg-failinst-failrm-1/DEBIAN/control new file mode 100644 index 0000000..1709965 --- /dev/null +++ b/tests/t-failinst-failrm/pkg-failinst-failrm-1/DEBIAN/control @@ -0,0 +1,7 @@ +Package: pkg-failinst-failrm +Version: 1 +Section: test +Priority: extra +Maintainer: Dpkg Developers <debian-dpkg@lists.debian.org> +Architecture: all +Description: test package - non-broken package to allow purge |