mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-12 12:25:02 -05:00
Pactest for removing multiple items in a dependency chain.
This adds a test for when removing multilpe packages recursively from a chain of dependent packages. This situation can occur when removing installed dependencies with makepkg if a "makedepend" recursively depends on a "depend" or if redundant dependancies are included. Signed-off-by: Allan McRae <mcrae_allan at hotmail.com> Signed-off-by: Xavier Chantry <shiningxc@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
9577c07d86
commit
ae40d1c05b
21
pactest/tests/remove052.py
Normal file
21
pactest/tests/remove052.py
Normal file
@ -0,0 +1,21 @@
|
||||
self.description = "-Rs test (dependency chain)"
|
||||
|
||||
lp1 = pmpkg("pkg1")
|
||||
lp1.depends = ["pkg2"]
|
||||
self.addpkg2db("local", lp1)
|
||||
|
||||
lp2 = pmpkg("pkg2")
|
||||
lp2.depends = ["pkg3"]
|
||||
lp2.reason = 1
|
||||
self.addpkg2db("local", lp2)
|
||||
|
||||
lp3 = pmpkg("pkg3")
|
||||
lp3.reason = 1
|
||||
self.addpkg2db("local", lp3)
|
||||
|
||||
self.args = "-Rs %s" % " ".join([p.name for p in lp1, lp3])
|
||||
|
||||
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