This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=28a354197bf0bde20237479df15dcbe6c428fb16 commit 28a354197bf0bde20237479df15dcbe6c428fb16 Author: Guillem Jover <[email protected]> AuthorDate: Sun Apr 3 18:51:25 2011 +0200 Enable unpack and install checks in t-option-dry-run test-case Now that dpkg 1.16.0 has been released it should not segfault on those any longer. --- t-option-dry-run/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/t-option-dry-run/Makefile b/t-option-dry-run/Makefile index f72954080..5cdf012f0 100644 --- a/t-option-dry-run/Makefile +++ b/t-option-dry-run/Makefile @@ -4,10 +4,10 @@ include ../Test.mk test-case: # Simulate unpacking a package - #$(DPKG_UNPACK) --dry-run pkg-normal.deb - #$(call pkg_is_not_installed,pkg-normal) - #$(DPKG_INSTALL) --dry-run pkg-normal.deb - #$(call pkg_is_not_installed,pkg-normal) + $(DPKG_UNPACK) --dry-run pkg-normal.deb + $(call pkg_is_not_installed,pkg-normal) + $(DPKG_INSTALL) --dry-run pkg-normal.deb + $(call pkg_is_not_installed,pkg-normal) $(DPKG_UNPACK) pkg-normal.deb -- Dpkg.Org's dpkg

