diff options
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 |