diff options
author | Nagy Gabor <ngaba@petra.hos.u-szeged.hu> | 2007-07-13 23:03:23 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-07-15 16:37:38 +0200 |
commit | c2920033d078768db08c338f4908033503abfc08 (patch) | |
tree | ea023d55227977f317b5baac9287d32d5d10f515 /pactest/tests | |
parent | 66b09410b4da950d4be95128333128fdb2658b3c (diff) | |
download | pacman-c2920033d078768db08c338f4908033503abfc08.tar.gz pacman-c2920033d078768db08c338f4908033503abfc08.tar.xz |
libalpm/deps.c : cleanup + little fix for resolvedeps.
The resolvedeps function was a bit negligent, as showed by the sync011 pactest.
Reference :
http://www.archlinux.org/pipermail/pacman-dev/2007-July/008782.html
Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
Diffstat (limited to 'pactest/tests')
-rw-r--r-- | pactest/tests/sync011.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pactest/tests/sync011.py b/pactest/tests/sync011.py new file mode 100644 index 00000000..f5b1943a --- /dev/null +++ b/pactest/tests/sync011.py @@ -0,0 +1,20 @@ +self.description = "Install a package from a sync db with cascaded dependencies + provides" + +sp1 = pmpkg("dummy", "1.0-2") +sp1.depends = ["dep1", "dep2=1.0-2"] + +sp2 = pmpkg("dep1") +sp2.files = ["bin/dep1"] +sp2.provides = ["dep2"] + +sp3 = pmpkg("dep2", "1.0-2") + +for p in sp1, sp2, sp3: + self.addpkg2db("sync", p); + +self.args = "-S %s" % sp1.name + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_VERSION=dummy|1.0-2") +self.addrule("PKG_EXIST=dep1") +self.addrule("PKG_EXIST=dep2") |