index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2019-06-03 00:32:36 -0700 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2019-06-06 10:38:31 +1000 |
commit | 39c20ad4f1d5f6e915b5be8976b6a94885ca3b0c (patch) | |
tree | 74d38438facb45679fda9e22711186c3abac67bb /test | |
parent | 55a65aaf904a32bcf59c652cbc03fc510c265142 (diff) |
-rw-r--r-- | test/pacman/tests/hook-file-change-packages.py | 2 | ||||
-rw-r--r-- | test/pacman/tests/hook-file-remove-trigger-match.py | 2 | ||||
-rw-r--r-- | test/pacman/tests/hook-file-upgrade-nomatch.py | 2 | ||||
-rw-r--r-- | test/pacman/tests/hook-target-list.py | 2 | ||||
-rw-r--r-- | test/pacman/tests/hook-type-reused.py | 2 |
diff --git a/test/pacman/tests/hook-file-change-packages.py b/test/pacman/tests/hook-file-change-packages.py index ad96fc14..4671dbe8 100644 --- a/test/pacman/tests/hook-file-change-packages.py +++ b/test/pacman/tests/hook-file-change-packages.py @@ -4,7 +4,7 @@ self.add_script("hook-script", ": > hook-output") self.add_hook("hook", """ [Trigger] - Type = File + Type = Path Operation = Upgrade Target = bin/foo diff --git a/test/pacman/tests/hook-file-remove-trigger-match.py b/test/pacman/tests/hook-file-remove-trigger-match.py index 6c9375c0..ac50014c 100644 --- a/test/pacman/tests/hook-file-remove-trigger-match.py +++ b/test/pacman/tests/hook-file-remove-trigger-match.py @@ -4,7 +4,7 @@ self.add_script("hook-script", ": > hook-output") self.add_hook("hook", """ [Trigger] - Type = File + Type = Path Operation = Remove Target = bin/foo diff --git a/test/pacman/tests/hook-file-upgrade-nomatch.py b/test/pacman/tests/hook-file-upgrade-nomatch.py index e984d376..891b8164 100644 --- a/test/pacman/tests/hook-file-upgrade-nomatch.py +++ b/test/pacman/tests/hook-file-upgrade-nomatch.py @@ -4,7 +4,7 @@ self.add_script("hook-script", ": > hook-output") self.add_hook("hook", """ [Trigger] - Type = File + Type = Path Operation = Upgrade Target = bin/?* diff --git a/test/pacman/tests/hook-target-list.py b/test/pacman/tests/hook-target-list.py index 6dd6c4d8..b932c491 100644 --- a/test/pacman/tests/hook-target-list.py +++ b/test/pacman/tests/hook-target-list.py @@ -14,7 +14,7 @@ self.add_hook("hook", Target = foo [Trigger] - Type = File + Type = Path Operation = Install # matches files in 'file/' but not 'file/' itself Target = file/?* diff --git a/test/pacman/tests/hook-type-reused.py b/test/pacman/tests/hook-type-reused.py index 472c8caf..0ea1c0ba 100644 --- a/test/pacman/tests/hook-type-reused.py +++ b/test/pacman/tests/hook-type-reused.py @@ -4,7 +4,7 @@ self.add_hook("hook", """ [Trigger] Type = Package - Type = File + Type = Path Operation = Install Target = foo |