Stephen Martinis | 89f9ca6 | 2017-10-18 19:12:35 | [diff] [blame] | 1 | # The JSON Test Results Format |
| 2 | |
Ben Pastene | 9cebf38 | 2022-01-04 23:44:45 | [diff] [blame] | 3 | *** note |
| 4 | Warning: The JSON test result format no longer affects the pass-fail decisions |
| 5 | made by Chrome's bots. All results are now fetched from ResultDB. For more |
| 6 | info, see [resultdb.md](resultdb.md). |
| 7 | *** |
| 8 | |
Stephen Martinis | 89f9ca6 | 2017-10-18 19:12:35 | [diff] [blame] | 9 | The JSON Test Results Format is a generic file format we use to record the |
| 10 | results of each individual test in test run (whether the test is run on a bot, |
| 11 | or run locally). |
| 12 | |
| 13 | [TOC] |
| 14 | |
| 15 | ## Introduction |
| 16 | |
| 17 | We use these files on the bots in order to determine whether a test step had |
| 18 | any failing tests (using a separate file means that we don't need to parse the |
|
|