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

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

Issue 1925593002: recipe engine: remove explicit cwd default in step recipe module (Closed) Base URL: https://github.com/luci/recipes-py.git@master
Patch Set: presubmit 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
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..d22d4c12c330e33945004866a7b8eb417c54533d 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,7 +39,6 @@
"echo",
"leaking"
],
- "cwd": "[SLAVE_BUILD]",
"name": "leak stdout",
"stdout": "[SLAVE_BUILD]/out.txt"
},
@@ -52,7 +47,6 @@
"ls",
"/path/to/tmp/"
],
- "cwd": "[SLAVE_BUILD]",
"name": "list temp dir"
},
{
@@ -60,7 +54,6 @@
"ls",
"[SLAVE_BUILD]/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/python/example.expected/basic.json ('k') | recipe_modules/shutil/example.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698