
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>
17 lines
359 B
Python
17 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
|