| OLD | NEW |
| 1 This directory contains test data for verifying certificate chains. | 1 This directory contains test data for verifying certificate chains. |
| 2 | 2 |
| 3 It contains the following types of files: | 3 It contains the following types of files: |
| 4 | 4 |
| 5 =============================== | 5 =============================== |
| 6 generate-*.py | 6 generate-*.py |
| 7 =============================== | 7 =============================== |
| 8 | 8 |
| 9 Generates the file for an individual test case. If the python file was | 9 Generates the file for an individual test case. If the python file was |
| 10 named generate-XXX.py, then the corresponding output will be named | 10 named generate-XXX.py, then the corresponding output will be named |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 VERIFY_RESULT: | 60 VERIFY_RESULT: |
| 61 | 61 |
| 62 This PEM block describes the expected result from verifying the path. | 62 This PEM block describes the expected result from verifying the path. |
| 63 | 63 |
| 64 - There must be exactly one such PEM block | 64 - There must be exactly one such PEM block |
| 65 - Its contents are a string with value of either "SUCCESS" or "FAIL" | 65 - Its contents are a string with value of either "SUCCESS" or "FAIL" |
| 66 | 66 |
| 67 ERRORS: | 67 ERRORS: |
| 68 | 68 |
| 69 This PEM block is a newline separated list of errors that are expected to occur | 69 This PEM block is a pretty-printed textual dump of all the errors, as given by |
| 70 when validating this path. The error string should correspond with a | 70 CertErrors::ToDebugString(). |
| 71 CertErrorType. | |
| OLD | NEW |