| OLD | NEW |
| 1 # Emit annotations to get full coverage of the annotation state machine. | 1 # Emit annotations to get full coverage of the annotation state machine. |
| 2 | 2 |
| 3 SEED_STEP baz | 3 SEED_STEP baz/qux |
| 4 | 4 |
| 5 SEED_STEP_TEXT@baz@seeded text | 5 SEED_STEP_TEXT@baz/qux@seeded text |
| 6 # Invalid SEED_STEP_TEXT (needs 3 parameters) is ignored. | 6 # Invalid SEED_STEP_TEXT (needs 3 parameters) is ignored. |
| 7 SEED_STEP_TEXT@baz | 7 SEED_STEP_TEXT@baz/qux |
| 8 | 8 |
| 9 # Invalid STEP_CURSOR for nonexistent step. | 9 # Invalid STEP_CURSOR for nonexistent step. |
| 10 +error STEP_CURSOR could not lookup step | 10 +error STEP_CURSOR could not lookup step |
| 11 STEP_CURSOR missing | 11 STEP_CURSOR missing |
| 12 | 12 |
| 13 # Erroneous SEED_STEP_TEXT for nonexistent step. | 13 # Erroneous SEED_STEP_TEXT for nonexistent step. |
| 14 +error no step named "missing" | 14 +error no step named "missing" |
| 15 SEED_STEP_TEXT@missing@nonexistent | 15 SEED_STEP_TEXT@missing@nonexistent |
| 16 | 16 |
| 17 # Start "foo". BUILD_STEP twice is to assert we don't close "foo" if it's the | 17 # Start "foo". BUILD_STEP twice is to assert we don't close "foo" if it's the |
| (...skipping 26 matching lines...) Expand all Loading... |
| 44 OHAICANHASCHEEZBURGER@PLZ | 44 OHAICANHASCHEEZBURGER@PLZ |
| 45 | 45 |
| 46 # Invalid link (missing URL). | 46 # Invalid link (missing URL). |
| 47 +error missing URL | 47 +error missing URL |
| 48 STEP_LINK@missingurl | 48 STEP_LINK@missingurl |
| 49 | 49 |
| 50 link@example@http://example.com | 50 link@example@http://example.com |
| 51 STEP_LINK@alias-->example@http://example.com/alias | 51 STEP_LINK@alias-->example@http://example.com/alias |
| 52 BUILD_EXCEPTION | 52 BUILD_EXCEPTION |
| 53 | 53 |
| 54 STEP_CURSOR baz | 54 STEP_CURSOR baz/qux |
| 55 STEP_STARTED | 55 STEP_STARTED |
| 56 +time | 56 +time |
| 57 STEP_LINK@cats@http://example.com/cats | 57 STEP_LINK@cats@http://example.com/cats |
| 58 STEP_LINK@dogs@http://example.com/dogs | 58 STEP_LINK@dogs@http://example.com/dogs |
| 59 STEP_LOG_LINE@content@ohai |
| 60 STEP_LOG_END@content |
| 59 BUILD_WARNINGS | 61 BUILD_WARNINGS |
| 60 | 62 |
| 61 STEP_CURSOR bar | 63 STEP_CURSOR bar |
| 62 +time | 64 +time |
| 63 | 65 |
| 64 # Test text emission and summary overriding/clearing. | 66 # Test text emission and summary overriding/clearing. |
| 65 STEP_TEXT@will be cleared | 67 STEP_TEXT@will be cleared |
| 66 STEP_CLEAR | 68 STEP_CLEAR |
| 67 | 69 |
| 68 STEP_TEXT@message0 | 70 STEP_TEXT@message0 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 81 | 83 |
| 82 STEP_CLOSED | 84 STEP_CLOSED |
| 83 | 85 |
| 84 BUILD_STEP qux | 86 BUILD_STEP qux |
| 85 # Nest at a really high number to hit our sparse case and test level skipping. | 87 # Nest at a really high number to hit our sparse case and test level skipping. |
| 86 STEP_NEST_LEVEL@999999999 | 88 STEP_NEST_LEVEL@999999999 |
| 87 +time | 89 +time |
| 88 HALT_ON_FAILURE | 90 HALT_ON_FAILURE |
| 89 BUILD_FAILED | 91 BUILD_FAILED |
| 90 STEP_TEXT@will not be emitted, since we're halting on failure. | 92 STEP_TEXT@will not be emitted, since we're halting on failure. |
| OLD | NEW |