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

Side by Side 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, 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "echo", 4 "echo",
5 "Hello World" 5 "Hello World"
6 ], 6 ],
7 "cwd": "[SLAVE_BUILD]",
7 "name": "echo", 8 "name": "echo",
8 "stderr": "/path/to/tmp/", 9 "stderr": "/path/to/tmp/",
9 "stdout": "/path/to/tmp/" 10 "stdout": "/path/to/tmp/"
10 }, 11 },
11 { 12 {
12 "cmd": [ 13 "cmd": [
13 "cat" 14 "cat"
14 ], 15 ],
16 "cwd": "[SLAVE_BUILD]",
15 "name": "cat", 17 "name": "cat",
16 "stdin": "hello", 18 "stdin": "hello",
17 "stdout": "/path/to/tmp/out" 19 "stdout": "/path/to/tmp/out"
18 }, 20 },
19 { 21 {
20 "cmd": [ 22 "cmd": [
21 "echo", 23 "echo",
22 "huh" 24 "huh"
23 ], 25 ],
26 "cwd": "[SLAVE_BUILD]",
24 "name": "automock", 27 "name": "automock",
25 "stdout": "/path/to/tmp/out" 28 "stdout": "/path/to/tmp/out"
26 }, 29 },
27 { 30 {
28 "cmd": [ 31 "cmd": [
29 "bash", 32 "bash",
30 "-c", 33 "-c",
31 "echo blah && echo fail 1>&2" 34 "echo blah && echo fail 1>&2"
32 ], 35 ],
36 "cwd": "[SLAVE_BUILD]",
33 "name": "automock (fail)", 37 "name": "automock (fail)",
34 "stderr": "/path/to/tmp/err", 38 "stderr": "/path/to/tmp/err",
35 "stdout": "/path/to/tmp/out" 39 "stdout": "/path/to/tmp/out"
36 }, 40 },
37 { 41 {
38 "cmd": [ 42 "cmd": [
39 "echo", 43 "echo",
40 "leaking" 44 "leaking"
41 ], 45 ],
46 "cwd": "[SLAVE_BUILD]",
42 "name": "leak stdout", 47 "name": "leak stdout",
43 "stdout": "[SLAVE_BUILD]/out.txt" 48 "stdout": "[SLAVE_BUILD]/out.txt"
44 }, 49 },
45 { 50 {
46 "cmd": [ 51 "cmd": [
47 "ls", 52 "ls",
48 "/path/to/tmp/" 53 "/path/to/tmp/"
49 ], 54 ],
55 "cwd": "[SLAVE_BUILD]",
50 "name": "list temp dir" 56 "name": "list temp dir"
51 }, 57 },
52 { 58 {
53 "cmd": [ 59 "cmd": [
54 "ls", 60 "ls",
55 "[SLAVE_BUILD]/out" 61 "[SLAVE_BUILD]/out"
56 ], 62 ],
63 "cwd": "[SLAVE_BUILD]",
57 "name": "leak dir" 64 "name": "leak dir"
58 } 65 }
59 ] 66 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698