Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # This file contains a list of ignored failed tests. Each line that starts with | |
| 2 # a hash (#) or empty is ignored. Other lines are parsed by the test runner to | |
| 3 # ignore failures of specified tests on particular platforms. Each such line has | |
| 4 # the following format: | |
| 5 # | |
| 6 # http://crbug.com/ISSUE [ PLATFORM1, PLATFORM2, ... ] TESTNAME | |
|
eseidel
2014/07/08 19:51:59
Are you sure you want commas in this list?
Sergiy Byelozyorov
2014/07/09 13:30:19
Yes, how otherwise should I separate platform defi
ojan
2014/07/09 17:34:02
Can we use exactly the same format as third_party/
Sergiy Byelozyorov
2014/07/10 11:12:56
Done.
| |
| 7 # | |
| 8 # where | |
| 9 # - ISSUE is the id of the associated issue for the flaky test; | |
| 10 # - PLATFORM1, PLATFORM2 etc. are each formated as a list of platform flags | |
| 11 # separated by whitespace, e.g. "OS_WIN CPU_32_BITS MODE_RELEASE" and limit | |
| 12 # on which platforms the test is disabled (note that square brackets and | |
| 13 # commas are part of the syntax and do NOT denote this section as optional); | |
| 14 # - TESTNAME is a name of the test to be ignored. | |
| 15 # | |
| 16 # This file is edited automatically by the ignorer-bot tool, which automatically | |
| 17 # ignores highly flaky tests. However, it may also be edited manually as long as | |
|
ojan
2014/07/09 17:34:02
I think we should keep this file 100% auto-generat
Sergiy Byelozyorov
2014/07/10 11:12:56
In the first version we will not remove tests auto
| |
| 18 # format spec is followed. | |
| OLD | NEW |