mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 15:58:50 -05:00
add remove044 pactest.
This indicates a problem in the current removedeps function (no version checking) for which Nagy proposed a fix here : http://www.archlinux.org/pipermail/pacman-dev/2007-June/008539.html But as he mentioned there, a better fix might be to use the checkdeps function in the removedeps one. Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
This commit is contained in:
parent
573b80405c
commit
c4e712c0ef
16
pactest/tests/remove044.py
Normal file
16
pactest/tests/remove044.py
Normal file
@ -0,0 +1,16 @@
|
||||
self.description = "-Rs test"
|
||||
|
||||
lp1 = pmpkg("pkg1")
|
||||
lp1.depends = ["pkg2=1.1-1"]
|
||||
self.addpkg2db("local", lp1)
|
||||
|
||||
lp2 = pmpkg("pkg2", "1.0-1")
|
||||
lp2.reason = 1
|
||||
self.addpkg2db("local", lp2)
|
||||
|
||||
|
||||
self.args = "-Rs %s" % lp1.name
|
||||
|
||||
self.addrule("PACMAN_RETCODE=0")
|
||||
self.addrule("!PKG_EXIST=pkg1")
|
||||
self.addrule("PKG_EXIST=pkg2")
|
Loading…
Reference in New Issue
Block a user