From b42d0852f31ce7cef75da5ce51e6c09545ef8f2d Mon Sep 17 00:00:00 2001 From: Andrew Gregory Date: Wed, 11 Nov 2015 19:19:59 -0500 Subject: allow arguments in hook Exec fields Signed-off-by: Andrew Gregory Signed-off-by: Allan McRae --- test/pacman/tests/hook-exec-with-arguments.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 test/pacman/tests/hook-exec-with-arguments.py (limited to 'test/pacman/tests/hook-exec-with-arguments.py') diff --git a/test/pacman/tests/hook-exec-with-arguments.py b/test/pacman/tests/hook-exec-with-arguments.py new file mode 100644 index 00000000..d3df87b5 --- /dev/null +++ b/test/pacman/tests/hook-exec-with-arguments.py @@ -0,0 +1,22 @@ +self.description = "Hook with arguments" + +self.add_hook("hook", + """ + [Trigger] + Type = Package + Operation = Install + Target = foo + + [Action] + When = PreTransaction + Exec = bin/sh -c ': > hook-output' + """); + +sp = pmpkg("foo") +self.addpkg2db("sync", sp) + +self.args = "-S foo" + +self.addrule("PACMAN_RETCODE=0") +self.addrule("PKG_EXIST=foo") +self.addrule("FILE_EXIST=hook-output") -- cgit v1.2.3-24-g4f1b