diff options
author | Dan McGee <dan@archlinux.org> | 2008-04-28 20:41:30 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-04-28 22:24:40 -0500 |
commit | 1201c8ce3aa6a8622400e4423c532c19e83f48aa (patch) | |
tree | 170d6b0c940797b84ab1788fbcb1c3d9fd5170ce /pactest/tests | |
parent | 245efca759adfcaf7e8d032477a9fe6e22860d86 (diff) | |
download | pacman-1201c8ce3aa6a8622400e4423c532c19e83f48aa.tar.xz |
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 <dan@archlinux.org>
Diffstat (limited to 'pactest/tests')
-rw-r--r-- | pactest/tests/mode001.py | 2 | ||||
-rw-r--r-- | pactest/tests/mode002.py | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/pactest/tests/mode001.py b/pactest/tests/mode001.py index ff245a2c..4ec11e10 100644 --- a/pactest/tests/mode001.py +++ b/pactest/tests/mode001.py @@ -1,7 +1,7 @@ self.description = "Check the mode of default files in a package" p = pmpkg("pkg1") -p.files = ["bin/foo" +p.files = ["bin/foo", "bin/bar"] self.addpkg(p) 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") |