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

Unified Diff: recipe_modules/raw_io/example.expected/basic.json

Issue 1906323003: recipe engine: extract infra-specific paths out of the engine (Closed) Base URL: https://github.com/luci/recipes-py.git@master
Patch Set: tmp Created 4 years, 8 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/raw_io/example.py ('k') | recipe_modules/shutil/example.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_modules/raw_io/example.expected/basic.json
diff --git a/recipe_modules/raw_io/example.expected/basic.json b/recipe_modules/raw_io/example.expected/basic.json
index d843c2d30d75b4e22e8d5327b032b22b6edd555b..bf507c7b36bd2bcb6aa54070343ebeaab23e61c4 100644
--- a/recipe_modules/raw_io/example.expected/basic.json
+++ b/recipe_modules/raw_io/example.expected/basic.json
@@ -4,7 +4,6 @@
"echo",
"Hello World"
],
- "cwd": "[SLAVE_BUILD]",
"name": "echo",
"stderr": "/path/to/tmp/",
"stdout": "/path/to/tmp/"
@@ -13,7 +12,6 @@
"cmd": [
"cat"
],
- "cwd": "[SLAVE_BUILD]",
"name": "cat",
"stdin": "hello",
"stdout": "/path/to/tmp/out"
@@ -23,7 +21,6 @@
"echo",
"huh"
],
- "cwd": "[SLAVE_BUILD]",
"name": "automock",
"stdout": "/path/to/tmp/out"
},
@@ -33,7 +30,6 @@
"-c",
"echo blah && echo fail 1>&2"
],
- "cwd": "[SLAVE_BUILD]",
"name": "automock (fail)",
"stderr": "/path/to/tmp/err",
"stdout": "/path/to/tmp/out"
@@ -43,24 +39,21 @@
"echo",
"leaking"
],
- "cwd": "[SLAVE_BUILD]",
"name": "leak stdout",
- "stdout": "[SLAVE_BUILD]/out.txt"
+ "stdout": "[TMP]/out.txt"
},
{
"cmd": [
"ls",
"/path/to/tmp/"
],
- "cwd": "[SLAVE_BUILD]",
"name": "list temp dir"
},
{
"cmd": [
"ls",
- "[SLAVE_BUILD]/out"
+ "[TMP]/out"
],
- "cwd": "[SLAVE_BUILD]",
"name": "leak dir"
},
{
@@ -70,7 +63,6 @@
"\nimport sys\nwith open(sys.argv[1], 'w') as f:\n f.write('bad_value')\n",
"/path/to/tmp/"
],
- "cwd": "[SLAVE_BUILD]",
"name": "override_default_mock",
"~followup_annotations": [
"@@@STEP_LOG_LINE@python.inline@@@@",
« no previous file with comments | « recipe_modules/raw_io/example.py ('k') | recipe_modules/shutil/example.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698