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=8a47fecff4f68b9e2c02990c0dbe438ec74b3db1 commit 8a47fecff4f68b9e2c02990c0dbe438ec74b3db1 Author: Guillem Jover <[email protected]> AuthorDate: Wed Jan 26 03:12:28 2011 +0100 Revert "Don't hardcode the list of tests" This reverts commit 99fb987864299e1d67752977c6e33fbe56231997. Using explicit lists makes it easier to add new failing tests w/o impacting the test suite, it also allows not running the interactive ones by default. --- Makefile | 34 +++++++++++++++++++++++++++++++++- t-conffile-prompt.control | 23 +++++++++++++++++++++++ 2 files changed, 56 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index de9cce958..90d0de50c 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,39 @@ # Copyright © 2008-2010 Guillem Jover <[email protected]> # -TESTS := $(wildcard t-*) +TESTS := \ + t-normal \ + t-unpack-symlink \ + t-unpack-hardlink \ + t-unpack-fifo \ + t-unpack-device \ + t-disappear \ + t-disappear-empty \ + t-disappear-depended \ + t-conflict \ + t-conflict-provide-replace-real \ + t-conflict-provide-replace-virtual \ + t-file-replaces \ + t-file-replaces-disappear \ + t-conffile-obsolete \ + t-conffile-orphan \ + t-conffile-prompt \ + t-conffile-forcenew \ + t-conffile-divert-normal \ + t-conffile-divert-conffile \ + t-conffile-conflict \ + t-conffile-replaces \ + t-conffile-rename \ + t-conffile-replaces-upgrade \ + t-conffile-replaces-existing \ + t-conffile-replaces-existing-and-upgrade \ + t-conffile-replaces-disappear \ + t-package-type \ + t-symlink-dir \ + t-substvars \ + t-failinst-failrm \ + t-dir-extension-check + # By default do nothing all:: diff --git a/t-conffile-prompt.control b/t-conffile-prompt.control new file mode 100644 index 000000000..49bfee7af --- /dev/null +++ b/t-conffile-prompt.control @@ -0,0 +1,23 @@ +Package: pkg-conff-prompt +Version: 0 +Section: test +Priority: extra +Maintainer: Guillem Jover <[email protected]> +Architecture: all +Description: test package - conffile prompt +Conffile: /test-conffile + test init +Postinst: + #!/bin/sh + echo "test modified" >/test-conffile + +Package: pkg-conff-prompt +Version: 1 +Section: test +Priority: extra +Maintainer: Guillem Jover <[email protected]> +Architecture: all +Description: test package - conffile prompt +Conffile: /test-conffile + test end + -- Dpkg.Org's dpkg

