mirror of
https://github.com/moparisthebest/pacman
synced 2024-10-31 23:55:04 -04:00
9f57921467
This will enable us to mark tests we know currently fail to differentiate them from those that we know should pass. Regressions should be easier to spot this way. Signed-off-by: Dan McGee <dan@archlinux.org>
18 lines
359 B
Python
18 lines
359 B
Python
self.description = "Upgrade to a package that provides another package"
|
|
|
|
lp = pmpkg("pkg1")
|
|
self.addpkg2db("local", lp)
|
|
|
|
p = pmpkg("pkg2")
|
|
p.conflicts = ["pkg1"]
|
|
p.provides = ["pkg1"]
|
|
self.addpkg(p)
|
|
|
|
self.args = "-U %s" % p.filename()
|
|
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("!PKG_EXIST=pkg1")
|
|
self.addrule("PKG_EXIST=pkg2")
|
|
|
|
self.expectfailure = True
|