1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00
pacman/pactest/tests/upgrade050.py
Dan McGee f2ade9ab0d * Added 5 new upgrade tests, which check various things with depends,
provides, and conflicts.
  - upgrade051 is known to fail- but we want to eventually make it work.
  - upgrade052 is Nagy's bug as reported on the ML- I think. If it isn't,
    let me know.
2007-02-27 01:34:07 +00:00

16 lines
359 B
Python

self.description = "Upgrade package with a conflict == depend (not installed)"
p1 = pmpkg("pkg1")
p1.conflicts = ["pkg2"]
p1.depends = ["pkg2"]
self.addpkg(p1)
p2 = pmpkg("pkg2")
self.addpkg(p2)
self.args = "-U %s" % " ".join([p.filename() for p in p1, p2])
self.addrule("PACMAN_RETCODE=1")
self.addrule("!PKG_EXIST=pkg1")
self.addrule("!PKG_EXIST=pkg2")