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

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

Issue 2672593002: raw_io module: Add text_input and text_output (Closed)
Patch Set: Add comment about no cover Created 3 years, 10 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
« no previous file with comments | « recipe_modules/raw_io/example.py ('k') | recipe_modules/raw_io/test_api.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "echo", 4 "echo",
5 "Hello World" 5 "Hello World"
6 ], 6 ],
7 "name": "echo", 7 "name": "echo",
8 "stderr": "/path/to/tmp/", 8 "stderr": "/path/to/tmp/",
9 "stdout": "/path/to/tmp/" 9 "stdout": "/path/to/tmp/"
10 }, 10 },
11 { 11 {
12 "cmd": [ 12 "cmd": [
13 "cat" 13 "cat"
14 ], 14 ],
15 "name": "cat", 15 "name": "cat",
16 "stdin": "hello", 16 "stdin": "hello",
17 "stdout": "/path/to/tmp/out" 17 "stdout": "/path/to/tmp/out"
18 }, 18 },
19 { 19 {
20 "cmd": [ 20 "cmd": [
21 "cat",
22 "hello"
23 ],
24 "name": "cat (2)",
25 "stdout": "/path/to/tmp/out"
26 },
27 {
28 "cmd": [
29 "cat"
30 ],
31 "name": "cat (3)",
32 "stdin": "\ufffdhello",
33 "stdout": "/path/to/tmp/"
34 },
35 {
36 "cmd": [
21 "echo", 37 "echo",
22 "huh" 38 "huh"
23 ], 39 ],
24 "name": "automock", 40 "name": "automock",
25 "stdout": "/path/to/tmp/out" 41 "stdout": "/path/to/tmp/out"
26 }, 42 },
27 { 43 {
28 "cmd": [ 44 "cmd": [
29 "bash", 45 "bash",
30 "-c", 46 "-c",
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 "@@@STEP_LOG_LINE@python.inline@ f.write('bad_value')@@@", 87 "@@@STEP_LOG_LINE@python.inline@ f.write('bad_value')@@@",
72 "@@@STEP_LOG_END@python.inline@@@" 88 "@@@STEP_LOG_END@python.inline@@@"
73 ] 89 ]
74 }, 90 },
75 { 91 {
76 "name": "$result", 92 "name": "$result",
77 "recipe_result": null, 93 "recipe_result": null,
78 "status_code": 0 94 "status_code": 0
79 } 95 }
80 ] 96 ]
OLDNEW
« no previous file with comments | « recipe_modules/raw_io/example.py ('k') | recipe_modules/raw_io/test_api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698