annotate tests/blacklist @ 10128:ea7c392f2b08

patch: drop eol normalization fast-path for 'lf' and 'crlf' With eolmode set to 'lf' or 'crlf' we avoided the hunk duplication and normalization by reading the input patch in text mode. Dropping this optimization simplifies code expectations for a small overhead. The change in test-mq-eol comes from a tolerance to CRLF instead of LF for last lines without newlines being broken by this revision. This tolerance was only partially supported and will be added again in a better way.
author Patrick Mezard <pmezard@gmail.com>
date Wed, 23 Dec 2009 19:31:48 +0100
parents 652064640e98
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9959
b37b060d84c7 run-tests: add a "--blacklist target" option to skip predefined test lists
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
diff changeset
1 # ConfigParser format
b37b060d84c7 run-tests: add a "--blacklist target" option to skip predefined test lists
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
diff changeset
2 # Definitions of blacklists for run-tests.py
b37b060d84c7 run-tests: add a "--blacklist target" option to skip predefined test lists
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
diff changeset
3 #
b37b060d84c7 run-tests: add a "--blacklist target" option to skip predefined test lists
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
diff changeset
4 # Identify in config sections a list of tests you want to be skipped.
b37b060d84c7 run-tests: add a "--blacklist target" option to skip predefined test lists
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
diff changeset
5 # Section names are meant to be used as targets for run-tests.py --blacklist
b37b060d84c7 run-tests: add a "--blacklist target" option to skip predefined test lists
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
diff changeset
6 # option.
b37b060d84c7 run-tests: add a "--blacklist target" option to skip predefined test lists
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
diff changeset
7 # "test-" prefixes should be omitted from test names. Values are not used.
b37b060d84c7 run-tests: add a "--blacklist target" option to skip predefined test lists
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
diff changeset
8 #
b37b060d84c7 run-tests: add a "--blacklist target" option to skip predefined test lists
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
diff changeset
9 # e.g. if your file looks like:
b37b060d84c7 run-tests: add a "--blacklist target" option to skip predefined test lists
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
diff changeset
10 ## [example]
b37b060d84c7 run-tests: add a "--blacklist target" option to skip predefined test lists
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
diff changeset
11 ## hgrc =
b37b060d84c7 run-tests: add a "--blacklist target" option to skip predefined test lists
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
diff changeset
12 ## help = "this string is not used"
b37b060d84c7 run-tests: add a "--blacklist target" option to skip predefined test lists
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
diff changeset
13 # then calling "run-tests.py --blacklist example" will exclude test-hgrc and
b37b060d84c7 run-tests: add a "--blacklist target" option to skip predefined test lists
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
diff changeset
14 # test-help from the list of tests to run.
9960
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
15
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
16 [inotify-failures]
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
17 # When --inotify is activated, help output and config changes:
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
18 debugcomplete =
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
19 empty =
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
20 fncache =
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
21 globalopts =
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
22 help =
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
23 hgrc =
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
24 inherit-mode =
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
25 qrecord =
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
26 strict =
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
27
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
28 # --inotify activates de facto the inotify extension. It does not play well
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
29 # with inotify-specific tests, which activate/desactivate inotify at will:
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
30 inotify =
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
31 inotify-debuginotify =
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
32 inotify-dirty-dirstate =
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
33 inotify-issue1208 =
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
34 inotify-issue1371 =
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
35 inotify-issue1542 =
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
36 inotify-issue1556 =
652064640e98 test blacklist: add inotify-failures target
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents: 9959
diff changeset
37 inotify-lookup =