1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

Add sync1002 pactest.

Reference:
http://www.archlinux.org/pipermail/pacman-dev/2007-July/008971.html

Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
This commit is contained in:
Nagy Gabor 2007-07-20 10:17:57 +02:00 committed by Dan McGee
parent df2447cd23
commit 5991e85abb

19
pactest/tests/sync1002.py Normal file
View File

@ -0,0 +1,19 @@
self.description = "Test -Se (resolve the dependencies' dependencies )"
sp1 = pmpkg("pkg1")
sp1.depends = [ "pkg2" ]
self.addpkg2db("sync", sp1)
sp2 = pmpkg("pkg2")
sp2.depends = [ "pkg3" ]
self.addpkg2db("sync", sp2)
sp3 = pmpkg("pkg3")
self.addpkg2db("sync", sp3)
self.args = "-Se pkg1 pkg3"
self.addrule("PACMAN_RETCODE=0")
self.addrule("PKG_EXIST=pkg2")
self.addrule("PKG_EXIST=pkg3")
self.addrule("!PKG_EXIST=pkg1")