mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-02 08:35:06 -04:00
b96922679e
A side effect of the previous commit ( ea9a756eea
)
is that it's now possible to use versioned conflicts.
Add two new conflict pactests for showing it.
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
14 lines
310 B
Python
14 lines
310 B
Python
self.description = "conflict with version (no conflict)"
|
|
|
|
p = pmpkg("pkg1")
|
|
p.conflicts = ["pkg2=1.0-2"]
|
|
self.addpkg(p);
|
|
|
|
lp = pmpkg("pkg2", "1.0-1")
|
|
self.addpkg2db("local", lp)
|
|
|
|
self.args = "-A %s" % p.filename()
|
|
self.addrule("PACMAN_RETCODE=0")
|
|
self.addrule("PKG_EXIST=pkg1")
|
|
self.addrule("PKG_EXIST=pkg2")
|