OLD | NEW |
1 [ | 1 [ |
2 { | 2 { |
3 "cmd": [ | 3 "cmd": [ |
4 "RECIPE_PACKAGE_REPO[depot_tools]/git_cl.py", | 4 "RECIPE_PACKAGE_REPO[depot_tools]/git_cl.py", |
5 "-d" | 5 "-d", |
| 6 "https://code.review/123", |
| 7 "--rietveld" |
6 ], | 8 ], |
7 "cwd": "[TMP_BASE]/fakee_tmp_1", | |
8 "name": "git_cl description", | 9 "name": "git_cl description", |
9 "stdout": "/path/to/tmp/" | 10 "stdout": "/path/to/tmp/" |
10 }, | 11 }, |
11 { | 12 { |
12 "cmd": [ | 13 "cmd": [ |
| 14 "RECIPE_PACKAGE_REPO[depot_tools]/git_cl.py", |
| 15 "-n", |
| 16 "-", |
| 17 "https://code.review/123", |
| 18 "--rietveld" |
| 19 ], |
| 20 "name": "git_cl set description", |
| 21 "stdin": "bammmm", |
| 22 "stdout": "/path/to/tmp/" |
| 23 }, |
| 24 { |
| 25 "cmd": [ |
13 "echo", | 26 "echo", |
14 "hi" | 27 "hi" |
15 ], | 28 ], |
16 "name": "echo" | 29 "name": "echo" |
17 }, | 30 }, |
18 { | 31 { |
19 "cmd": [ | 32 "cmd": [ |
20 "RECIPE_PACKAGE_REPO[depot_tools]/git_cl.py", | 33 "RECIPE_PACKAGE_REPO[depot_tools]/git_cl.py", |
21 "-d" | 34 "-d" |
22 ], | 35 ], |
23 "cwd": "[TMP_BASE]/fakerepo_tmp_2", | 36 "cwd": "[TMP_BASE]/fakerepo_tmp_1", |
24 "name": "git_cl description (2)", | 37 "name": "git_cl description (2)", |
25 "stdout": "/path/to/tmp/" | 38 "stdout": "/path/to/tmp/" |
26 }, | 39 }, |
27 { | 40 { |
28 "cmd": [ | 41 "cmd": [ |
29 "echo", | 42 "echo", |
30 "hey" | 43 "hey" |
31 ], | 44 ], |
32 "name": "echo (2)" | 45 "name": "echo (2)" |
33 }, | 46 }, |
34 { | 47 { |
35 "cmd": [ | 48 "cmd": [ |
36 "RECIPE_PACKAGE_REPO[depot_tools]/git_cl.py", | 49 "RECIPE_PACKAGE_REPO[depot_tools]/git_cl.py", |
37 "-n", | 50 "-n", |
38 "-" | 51 "-" |
39 ], | 52 ], |
40 "cwd": "[TMP_BASE]/fakerepo_tmp_2", | 53 "cwd": "[TMP_BASE]/fakerepo_tmp_1", |
41 "name": "git_cl set description", | 54 "name": "git_cl set description (2)", |
42 "stdin": "new description woo", | 55 "stdin": "new description woo", |
43 "stdout": "/path/to/tmp/" | 56 "stdout": "/path/to/tmp/" |
44 }, | 57 }, |
45 { | 58 { |
46 "cmd": [ | 59 "cmd": [ |
47 "RECIPE_PACKAGE_REPO[depot_tools]/git_cl.py", | 60 "RECIPE_PACKAGE_REPO[depot_tools]/git_cl.py", |
48 "-d" | 61 "-d" |
49 ], | 62 ], |
50 "cwd": "[TMP_BASE]/fakerepo_tmp_2", | 63 "cwd": "[TMP_BASE]/fakerepo_tmp_1", |
51 "name": "git_cl description (3)", | 64 "name": "git_cl description (3)", |
52 "stdout": "/path/to/tmp/" | 65 "stdout": "/path/to/tmp/" |
53 }, | 66 }, |
54 { | 67 { |
55 "cmd": [ | 68 "cmd": [ |
56 "echo", | 69 "echo", |
57 "new description woo" | 70 "new description woo" |
58 ], | 71 ], |
59 "name": "echo (3)" | 72 "name": "echo (3)" |
60 }, | 73 }, |
61 { | 74 { |
62 "name": "$result", | 75 "name": "$result", |
63 "recipe_result": null, | 76 "recipe_result": null, |
64 "status_code": 0 | 77 "status_code": 0 |
65 } | 78 } |
66 ] | 79 ] |
OLD | NEW |