Brian Sheedy | 3e2d85a | 2024-01-08 20:51:50 | [diff] [blame] | 1 | # Expectation Files |
| 2 | |
| 3 | A number of test suites in Chromium use expectation files to handle test |
| 4 | failures in order to have more granular control compared to the usual approach |
| 5 | of entirely disabling failing tests. This documentation goes into the general |
| 6 | usage of expecation files, while suite-specific details are handled in other |
| 7 | files. |
| 8 | |
| 9 | [TOC] |
| 10 | |
| 11 | Currently, the test suites that use expectation files can be broadly categorized |
| 12 | as Blink tests and GPU tests. Blink-specific documentation can be found |
| 13 | [here][blink_expectation_doc], while GPU-specific documentation can be found |
| 14 | [here][gpu_expectation_doc]. |
| 15 | |
| 16 | [blink_expectation_doc]: https://source.chromium.org/chromium/chromium/src/+/main:docs/testing/web_test_expectations.md |
| 17 | [gpu_expectation_doc]: https://source.chromium.org/chromium/chromium/src/+/main:docs/gpu/gpu_expectation_files.md |
| 18 | |
| 19 | ## Design |
| 20 | |
| 21 | The full design for the format can be found [here][chromium_test_list_format] if |
| 22 | the overview in this documentation is not sufficient. |
| 23 | |
|
|