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

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

Issue 1347263002: Revert of Cross-repo recipe package system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 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 | « scripts/slave/recipe_modules/raw_io/example.py ('k') | scripts/slave/recipe_modules/raw_io/test_api.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
new file mode 100644
index 0000000000000000000000000000000000000000..a622b7caf8958a89fe3ce286e5ecd8922455b209
--- /dev/null
+++ b/scripts/slave/recipe_modules/raw_io/example.expected/basic.json
@@ -0,0 +1,66 @@
+[
+ {
+ "cmd": [
+ "echo",
+ "Hello World"
+ ],
+ "cwd": "[SLAVE_BUILD]",
+ "name": "echo",
+ "stderr": "/path/to/tmp/",
+ "stdout": "/path/to/tmp/"
+ },
+ {
+ "cmd": [
+ "cat"
+ ],
+ "cwd": "[SLAVE_BUILD]",
+ "name": "cat",
+ "stdin": "hello",
+ "stdout": "/path/to/tmp/out"
+ },
+ {
+ "cmd": [
+ "echo",
+ "huh"
+ ],
+ "cwd": "[SLAVE_BUILD]",
+ "name": "automock",
+ "stdout": "/path/to/tmp/out"
+ },
+ {
+ "cmd": [
+ "bash",
+ "-c",
+ "echo blah && echo fail 1>&2"
+ ],
+ "cwd": "[SLAVE_BUILD]",
+ "name": "automock (fail)",
+ "stderr": "/path/to/tmp/err",
+ "stdout": "/path/to/tmp/out"
+ },
+ {
+ "cmd": [
+ "echo",
+ "leaking"
+ ],
+ "cwd": "[SLAVE_BUILD]",
+ "name": "leak stdout",
+ "stdout": "[SLAVE_BUILD]/out.txt"
+ },
+ {
+ "cmd": [
+ "ls",
+ "/path/to/tmp/"
+ ],
+ "cwd": "[SLAVE_BUILD]",
+ "name": "list temp dir"
+ },
+ {
+ "cmd": [
+ "ls",
+ "[SLAVE_BUILD]/out"
+ ],
+ "cwd": "[SLAVE_BUILD]",
+ "name": "leak dir"
+ }
+]
« no previous file with comments | « scripts/slave/recipe_modules/raw_io/example.py ('k') | scripts/slave/recipe_modules/raw_io/test_api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698