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

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

Issue 1115453002: Recipes: make cwd default to slave_build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: rebase Created 5 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: scripts/slave/recipe_modules/raw_io/example.expected/basic.json
diff --git a/scripts/slave/recipe_modules/raw_io/example.expected/basic.json b/scripts/slave/recipe_modules/raw_io/example.expected/basic.json
index 4918e44165fa7b677d323cc6ccf9de5528f93c98..a622b7caf8958a89fe3ce286e5ecd8922455b209 100644
--- a/scripts/slave/recipe_modules/raw_io/example.expected/basic.json
+++ b/scripts/slave/recipe_modules/raw_io/example.expected/basic.json
@@ -4,6 +4,7 @@
"echo",
"Hello World"
],
+ "cwd": "[SLAVE_BUILD]",
"name": "echo",
"stderr": "/path/to/tmp/",
"stdout": "/path/to/tmp/"
@@ -12,6 +13,7 @@
"cmd": [
"cat"
],
+ "cwd": "[SLAVE_BUILD]",
"name": "cat",
"stdin": "hello",
"stdout": "/path/to/tmp/out"
@@ -21,6 +23,7 @@
"echo",
"huh"
],
+ "cwd": "[SLAVE_BUILD]",
"name": "automock",
"stdout": "/path/to/tmp/out"
},
@@ -30,6 +33,7 @@
"-c",
"echo blah && echo fail 1>&2"
],
+ "cwd": "[SLAVE_BUILD]",
"name": "automock (fail)",
"stderr": "/path/to/tmp/err",
"stdout": "/path/to/tmp/out"
@@ -39,6 +43,7 @@
"echo",
"leaking"
],
+ "cwd": "[SLAVE_BUILD]",
"name": "leak stdout",
"stdout": "[SLAVE_BUILD]/out.txt"
},
@@ -47,6 +52,7 @@
"ls",
"/path/to/tmp/"
],
+ "cwd": "[SLAVE_BUILD]",
"name": "list temp dir"
},
{
@@ -54,6 +60,7 @@
"ls",
"[SLAVE_BUILD]/out"
],
+ "cwd": "[SLAVE_BUILD]",
"name": "leak dir"
}
]

Powered by Google App Engine
This is Rietveld 408576698