1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-11-12 04:15:06 -05:00
pacman/test/pacman/tests/upgrade050.py
Allan McRae 844d82fad8 Move pacman test suite
Move the test suite to test/pacman in order to make a logical
location for a future makepkg test suite.

Signed-off-by: Allan McRae <allan@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
2010-06-02 13:14:51 -05: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")