From 1201c8ce3aa6a8622400e4423c532c19e83f48aa Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Mon, 28 Apr 2008 20:41:30 -0500 Subject: Update pactest to allow setting modes on created files This should allow some future tests to set modes and ensure they are set after installation. It is also in anticipation of a test for checking permissions on pacnew files. Signed-off-by: Dan McGee --- pactest/tests/mode002.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pactest/tests/mode002.py (limited to 'pactest/tests/mode002.py') diff --git a/pactest/tests/mode002.py b/pactest/tests/mode002.py new file mode 100644 index 00000000..cc4a8fe8 --- /dev/null +++ b/pactest/tests/mode002.py @@ -0,0 +1,12 @@ +self.description = "Check execute mode on files in a package" + +p = pmpkg("pkg1") +p.files = ["bin/foo|755", + "bin/bar|755"] +self.addpkg(p) + +self.args = "-U %s" % p.filename() + +self.addrule("PACMAN_RETCODE=0") +self.addrule("FILE_MODE=bin/foo|755") +self.addrule("FILE_MODE=bin/bar|755") -- cgit v1.2.3-54-g00ecf