diff options
author | Nagy Gabor <ngaba@petra.hos.u-szeged.hu> | 2007-07-10 16:08:04 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-07-10 17:10:54 +0200 |
commit | c4e712c0ef50a9bac5a7ff5075d48d0a41744493 (patch) | |
tree | 0664ea926861fa69d2cc2870ae767f97e644bb8a | |
parent | 573b80405c668b0ed3aa2b2d52998f102c01f56e (diff) | |
download | pacman-c4e712c0ef50a9bac5a7ff5075d48d0a41744493.tar.gz pacman-c4e712c0ef50a9bac5a7ff5075d48d0a41744493.tar.xz |
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>
-rw-r--r-- | pactest/tests/remove044.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/pactest/tests/remove044.py b/pactest/tests/remove044.py new file mode 100644 index 00000000..720c1fe7 --- /dev/null +++ b/pactest/tests/remove044.py @@ -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") |