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

Side by Side Diff: recipe_modules/properties/example.expected/buildbot_generic.json

Issue 2806373004: Enable strict coverage for json, path, platform, properties, raw_io (Closed)
Patch Set: rebase Created 3 years, 8 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
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "echo", 4 "echo",
5 "None", 5 "None",
6 "'thing'" 6 "'thing'"
7 ], 7 ],
8 "name": "echo" 8 "name": "echo"
9 }, 9 },
10 { 10 {
11 "cmd": [ 11 "cmd": [
12 "echo", 12 "echo",
13 "('blamelist', ['cool_dev1337@chromium.org', 'hax@chromium.org'])", 13 "('blamelist', ['cool_dev1337@chromium.org', 'hax@chromium.org'])",
14 "('bot_id', 'test_bot')", 14 "('bot_id', 'test_bot')",
15 "('buildbotURL', 'http://c.org/p/cr/')", 15 "('buildbotURL', 'http://c.org/p/cr/')",
16 "('buildername', 'TestBuilder')", 16 "('buildername', 'TestBuilder')",
17 "('buildnumber', 571)", 17 "('buildnumber', 571)",
18 "('foo.bar-bam', 'thing')", 18 "('foo.bar-bam', 'thing')",
19 "('mastername', 'chromium.testing.master')", 19 "('mastername', 'chromium.testing.master')",
20 "('recipe', 'properties:example')", 20 "('recipe', 'properties:example')",
21 "('slavename', 'TestSlavename')", 21 "('slavename', 'TestSlavename')",
22 "('test_prop', None)", 22 "('test_prop', None)",
23 "('workdir', '/path/to/workdir/TestSlavename')" 23 "('workdir', '/path/to/workdir/TestSlavename')"
24 ], 24 ],
25 "name": "echo all" 25 "name": "echo all"
26 }, 26 },
27 { 27 {
28 "cmd": [
29 "echo",
30 "'/path/to/workdir/TestSlavename'"
31 ],
32 "name": "echo workdir"
33 },
34 {
35 "cmd": [
36 "echo",
37 "'TestBuilder'"
38 ],
39 "name": "echo buildername"
40 },
41 {
42 "cmd": [
43 "echo",
44 "'properties:example'"
45 ],
46 "name": "echo recipe"
47 },
48 {
49 "cmd": [
50 "echo",
51 "'thing'"
52 ],
53 "name": "echo foo.bar-bam"
54 },
55 {
56 "cmd": [
57 "echo",
58 "'chromium.testing.master'"
59 ],
60 "name": "echo mastername"
61 },
62 {
63 "cmd": [
64 "echo",
65 "571"
66 ],
67 "name": "echo buildnumber"
68 },
69 {
70 "cmd": [
71 "echo",
72 "'TestSlavename'"
73 ],
74 "name": "echo slavename"
75 },
76 {
77 "cmd": [
78 "echo",
79 "('cool_dev1337@chromium.org', 'hax@chromium.org')"
80 ],
81 "name": "echo blamelist"
82 },
83 {
84 "cmd": [
85 "echo",
86 "'http://c.org/p/cr/'"
87 ],
88 "name": "echo buildbotURL"
89 },
90 {
91 "cmd": [
92 "echo",
93 "None"
94 ],
95 "name": "echo test_prop"
96 },
97 {
98 "cmd": [
99 "echo",
100 "'test_bot'"
101 ],
102 "name": "echo bot_id"
103 },
104 {
28 "name": "$result", 105 "name": "$result",
29 "recipe_result": null, 106 "recipe_result": null,
30 "status_code": 0 107 "status_code": 0
31 } 108 }
32 ] 109 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698