| 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"
|
| + }
|
| +]
|
|
|