From d920e7053c5be3325e40f504f56a37ac8c779ad2 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Mon, 9 Jun 2014 14:21:04 +0200 Subject: Add test case for the perl 5.20 dependency breakage This test currently fails. Signed-off-by: Florian Pritz Signed-off-by: Allan McRae --- test/pacman/tests/TESTS | 1 + ...nc-update-package-removing-required-provides.py | 23 ++++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 test/pacman/tests/sync-update-package-removing-required-provides.py (limited to 'test') diff --git a/test/pacman/tests/TESTS b/test/pacman/tests/TESTS index a987cff7..dc47294a 100644 --- a/test/pacman/tests/TESTS +++ b/test/pacman/tests/TESTS @@ -140,6 +140,7 @@ TESTS += test/pacman/tests/sync-nodepversion03.py TESTS += test/pacman/tests/sync-nodepversion04.py TESTS += test/pacman/tests/sync-nodepversion05.py TESTS += test/pacman/tests/sync-nodepversion06.py +TESTS += test/pacman/tests/sync-update-package-removing-required-provides.py TESTS += test/pacman/tests/sync001.py TESTS += test/pacman/tests/sync002.py TESTS += test/pacman/tests/sync003.py diff --git a/test/pacman/tests/sync-update-package-removing-required-provides.py b/test/pacman/tests/sync-update-package-removing-required-provides.py new file mode 100644 index 00000000..19bfd922 --- /dev/null +++ b/test/pacman/tests/sync-update-package-removing-required-provides.py @@ -0,0 +1,23 @@ +self.description = "Upgrade a package that loose a provides entry which moves to a dedicated package" + +lp1 = pmpkg("pkg1", "1-1") +lp1.provides = ["feature=1"] +lp2 = pmpkg("pkg2") +lp2.depends = ["feature"] + +for p in lp1, lp2: + self.addpkg2db("local", p) + +sp1 = pmpkg("pkg1", "2-1") +# NOTE: no provides for feature anymore +sp2 = pmpkg("feature", "2-1") + +for p in sp1, sp2: + self.addpkg2db("sync", p) + +self.args = "-Su" + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_VERSION=feature|2-1") +self.addrule("PKG_VERSION=pkg1|2-1") +self.expectfailure = True -- cgit v1.2.3-54-g00ecf