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

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

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