mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-17 14:55:07 -05:00
Add new sync012 pactest.
This test installs three packages with a circular dependency, to check everything still goes fine in that case. Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
This commit is contained in:
parent
a909fe6018
commit
aaf291c11c
20
pactest/tests/sync012.py
Normal file
20
pactest/tests/sync012.py
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
self.description = "Install packages from a sync db with circular dependencies"
|
||||||
|
|
||||||
|
sp1 = pmpkg("pkg1")
|
||||||
|
sp1.depends = ["pkg2"]
|
||||||
|
|
||||||
|
sp2 = pmpkg("pkg2")
|
||||||
|
sp2.depends = ["pkg3"]
|
||||||
|
|
||||||
|
sp3 = pmpkg("pkg3")
|
||||||
|
sp3.depends = ["pkg1"]
|
||||||
|
|
||||||
|
for p in sp1, sp2, sp3:
|
||||||
|
self.addpkg2db("sync", p);
|
||||||
|
|
||||||
|
self.args = "-S %s" % sp1.name
|
||||||
|
|
||||||
|
self.addrule("PACMAN_RETCODE=0")
|
||||||
|
self.addrule("PKG_EXIST=pkg1")
|
||||||
|
self.addrule("PKG_EXIST=pkg2")
|
||||||
|
self.addrule("PKG_EXIST=pkg3")
|
Loading…
Reference in New Issue
Block a user