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:
parent
df2447cd23
commit
5991e85abb
1 changed files with 19 additions and 0 deletions
19
pactest/tests/sync1002.py
Normal file
19
pactest/tests/sync1002.py
Normal 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")
|
Loading…
Add table
Reference in a new issue