Add test case for the perl 5.20 dependency breakage

This test currently fails.

Signed-off-by: Florian Pritz <bluewind@xinu.at>
Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
Florian Pritz 2014-06-09 14:21:04 +02:00 committed by Allan McRae
parent b9f98ae97c
commit d920e7053c
2 changed files with 24 additions and 0 deletions

View File

@ -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

View File

@ -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