blob: 0546511ce1368582158d4f885631f936fa7c088e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# quick note here - chroot() is expected to fail. We're not checking the
# validity of the scripts, only that they fire (or try to)
self.description = "Scriptlet test (pre/post remove)"
p1 = pmpkg("dummy")
p1.files = ['etc/dummy.conf']
p1.install['pre_remove'] = "ls /etc";
p1.install['post_remove'] = "ls /etc";
self.addpkg2db("local", p1)
# --debug is necessary to check PACMAN_OUTPUT
self.args = "--debug -R %s" % p1.name
self.addrule("PACMAN_RETCODE=0")
self.addrule("PACMAN_OUTPUT=pre_remove")
self.addrule("PACMAN_OUTPUT=post_remove")
|