index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | test/pacman/README | 1 | ||||
-rw-r--r-- | test/pacman/pmrule.py | 4 |
diff --git a/test/pacman/README b/test/pacman/README index c7aeb10a..2516a8ad 100644 --- a/test/pacman/README +++ b/test/pacman/README @@ -299,6 +299,7 @@ its DEPENDS field. . FILE rules FILE_EXIST=path/to/file + FILE_EMPTY=path/to/file FILE_MODIFIED=path/to/file FILE_MODE=path/to/file|octal FILE_TYPE=path/to/file|type (possible types: dir, file, link) diff --git a/test/pacman/pmrule.py b/test/pacman/pmrule.py index ba94ab8c..a91741be 100644 --- a/test/pacman/pmrule.py +++ b/test/pacman/pmrule.py @@ -112,6 +112,10 @@ class pmrule(object): if case == "EXIST": if not os.path.isfile(filename): success = 0 + elif case == "EMPTY": + if not (os.path.isfile(filename) + and os.path.getsize(filename) == 0): + success = 0 elif case == "MODIFIED": for f in test.files: if f.name == key: |