Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Unified Diff: recipe_modules/generator_script/example.expected/nested.json

Issue 2320223002: Revert of Track step nesting in StreamEngine. (Closed) Base URL: https://github.com/luci/recipes-py@emit-initial-properties
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « recipe_modules/generator_script/example.py ('k') | recipe_modules/step/api.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_modules/generator_script/example.expected/nested.json
diff --git a/recipe_modules/generator_script/example.expected/nested.json b/recipe_modules/generator_script/example.expected/nested.json
deleted file mode 100644
index 9de70de97f388050fa89d46ea302979b464deeef..0000000000000000000000000000000000000000
--- a/recipe_modules/generator_script/example.expected/nested.json
+++ /dev/null
@@ -1,127 +0,0 @@
-[
- {
- "cmd": [
- "python",
- "-u",
- "nested.py",
- "--output-json",
- "/path/to/tmp/json"
- ],
- "cwd": "[TMP_BASE]",
- "name": "gen step(nested.py)",
- "~followup_annotations": [
- "@@@STEP_LOG_LINE@json.output@[@@@",
- "@@@STEP_LOG_LINE@json.output@ {@@@",
- "@@@STEP_LOG_LINE@json.output@ \"cmd\": [@@@",
- "@@@STEP_LOG_LINE@json.output@ \"echo\", @@@",
- "@@@STEP_LOG_LINE@json.output@ \"grandparent\"@@@",
- "@@@STEP_LOG_LINE@json.output@ ], @@@",
- "@@@STEP_LOG_LINE@json.output@ \"name\": \"grandparent\"@@@",
- "@@@STEP_LOG_LINE@json.output@ }, @@@",
- "@@@STEP_LOG_LINE@json.output@ {@@@",
- "@@@STEP_LOG_LINE@json.output@ \"cmd\": [@@@",
- "@@@STEP_LOG_LINE@json.output@ \"echo\", @@@",
- "@@@STEP_LOG_LINE@json.output@ \"parent\"@@@",
- "@@@STEP_LOG_LINE@json.output@ ], @@@",
- "@@@STEP_LOG_LINE@json.output@ \"name\": \"parent\", @@@",
- "@@@STEP_LOG_LINE@json.output@ \"step_nest_level\": 1@@@",
- "@@@STEP_LOG_LINE@json.output@ }, @@@",
- "@@@STEP_LOG_LINE@json.output@ {@@@",
- "@@@STEP_LOG_LINE@json.output@ \"cmd\": [@@@",
- "@@@STEP_LOG_LINE@json.output@ \"echo\", @@@",
- "@@@STEP_LOG_LINE@json.output@ \"child\"@@@",
- "@@@STEP_LOG_LINE@json.output@ ], @@@",
- "@@@STEP_LOG_LINE@json.output@ \"name\": \"child\", @@@",
- "@@@STEP_LOG_LINE@json.output@ \"step_nest_level\": 2@@@",
- "@@@STEP_LOG_LINE@json.output@ }, @@@",
- "@@@STEP_LOG_LINE@json.output@ {@@@",
- "@@@STEP_LOG_LINE@json.output@ \"cmd\": [@@@",
- "@@@STEP_LOG_LINE@json.output@ \"echo\", @@@",
- "@@@STEP_LOG_LINE@json.output@ \"sibling\"@@@",
- "@@@STEP_LOG_LINE@json.output@ ], @@@",
- "@@@STEP_LOG_LINE@json.output@ \"name\": \"sibling\", @@@",
- "@@@STEP_LOG_LINE@json.output@ \"step_nest_level\": 2@@@",
- "@@@STEP_LOG_LINE@json.output@ }, @@@",
- "@@@STEP_LOG_LINE@json.output@ {@@@",
- "@@@STEP_LOG_LINE@json.output@ \"cmd\": [@@@",
- "@@@STEP_LOG_LINE@json.output@ \"echo\", @@@",
- "@@@STEP_LOG_LINE@json.output@ \"uncle\"@@@",
- "@@@STEP_LOG_LINE@json.output@ ], @@@",
- "@@@STEP_LOG_LINE@json.output@ \"name\": \"uncle\", @@@",
- "@@@STEP_LOG_LINE@json.output@ \"step_nest_level\": 1@@@",
- "@@@STEP_LOG_LINE@json.output@ }, @@@",
- "@@@STEP_LOG_LINE@json.output@ {@@@",
- "@@@STEP_LOG_LINE@json.output@ \"cmd\": [@@@",
- "@@@STEP_LOG_LINE@json.output@ \"echo\", @@@",
- "@@@STEP_LOG_LINE@json.output@ \"cousin\"@@@",
- "@@@STEP_LOG_LINE@json.output@ ], @@@",
- "@@@STEP_LOG_LINE@json.output@ \"name\": \"cousin\", @@@",
- "@@@STEP_LOG_LINE@json.output@ \"step_nest_level\": 2@@@",
- "@@@STEP_LOG_LINE@json.output@ }@@@",
- "@@@STEP_LOG_LINE@json.output@]@@@",
- "@@@STEP_LOG_END@json.output@@@"
- ]
- },
- {
- "cmd": [
- "echo",
- "grandparent"
- ],
- "name": "grandparent"
- },
- {
- "cmd": [
- "echo",
- "parent"
- ],
- "name": "parent",
- "~followup_annotations": [
- "@@@STEP_NEST_LEVEL@1@@@"
- ]
- },
- {
- "cmd": [
- "echo",
- "child"
- ],
- "name": "child",
- "~followup_annotations": [
- "@@@STEP_NEST_LEVEL@2@@@"
- ]
- },
- {
- "cmd": [
- "echo",
- "sibling"
- ],
- "name": "sibling",
- "~followup_annotations": [
- "@@@STEP_NEST_LEVEL@2@@@"
- ]
- },
- {
- "cmd": [
- "echo",
- "uncle"
- ],
- "name": "uncle",
- "~followup_annotations": [
- "@@@STEP_NEST_LEVEL@1@@@"
- ]
- },
- {
- "cmd": [
- "echo",
- "cousin"
- ],
- "name": "cousin",
- "~followup_annotations": [
- "@@@STEP_NEST_LEVEL@2@@@"
- ]
- },
- {
- "name": "$result",
- "recipe_result": null,
- "status_code": 0
- }
-]
« no previous file with comments | « recipe_modules/generator_script/example.py ('k') | recipe_modules/step/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698