tests/blacklist
author Patrick Mezard <pmezard@gmail.com>
Sun, 13 Dec 2009 18:06:24 +0100
changeset 10060 f780b1098efc
parent 9960 652064640e98
permissions -rw-r--r--
templatekw: change {file_copies} behaviour, add {file_copies_switch} {file_copies} template now displays file copies with or without the --copies switch being set. A new {file_copies_switch} template implements the former behaviour.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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 =