Fix scriptlet pactest cases so they 'succeed' again

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2007-10-14 18:52:17 -05:00
parent 3d7e06f204
commit 128b288ca7
2 changed files with 10 additions and 0 deletions

View File

@ -2,6 +2,10 @@
# validity of the scripts, only that they fire (or try to)
self.description = "Scriptlet test (pre/post install)"
lpsh = pmpkg("sh")
lpsh.files = ['bin/sh']
self.addpkg2db("local", lpsh)
p1 = pmpkg("dummy")
p1.files = ['etc/dummy.conf']
p1.install['pre_install'] = "ls /etc";
@ -12,5 +16,6 @@
self.args = "--debug -U %s" % p1.filename()
self.addrule("PACMAN_RETCODE=0")
self.addrule("FILE_EXIST=bin/sh")
self.addrule("PACMAN_OUTPUT=pre_install")
self.addrule("PACMAN_OUTPUT=post_install")

View File

@ -2,6 +2,10 @@
# validity of the scripts, only that they fire (or try to)
self.description = "Scriptlet test (pre/post remove)"
lpsh = pmpkg("sh")
lpsh.files = ['bin/sh']
self.addpkg2db("local", lpsh)
p1 = pmpkg("dummy")
p1.files = ['etc/dummy.conf']
p1.install['pre_remove'] = "ls /etc";
@ -12,5 +16,6 @@
self.args = "--debug -R %s" % p1.name
self.addrule("PACMAN_RETCODE=0")
self.addrule("FILE_EXIST=bin/sh")
self.addrule("PACMAN_OUTPUT=pre_remove")
self.addrule("PACMAN_OUTPUT=post_remove")