OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 DEPS = [ | 5 DEPS = [ |
6 'bot_update', | 6 'bot_update', |
7 'gclient', | 7 'gclient', |
8 'recipe_engine/path', | 8 'recipe_engine/path', |
9 'recipe_engine/properties', | 9 'recipe_engine/properties', |
10 ] | 10 ] |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 | 47 |
48 | 48 |
49 def GenTests(api): | 49 def GenTests(api): |
50 yield api.test('basic') + api.properties( | 50 yield api.test('basic') + api.properties( |
51 mastername='chromium.linux', | 51 mastername='chromium.linux', |
52 buildername='Linux Builder', | 52 buildername='Linux Builder', |
53 slavename='totallyaslave-m1', | 53 slavename='totallyaslave-m1', |
54 patch=False, | 54 patch=False, |
55 revision='abc' | 55 revision='abc' |
56 ) | 56 ) |
| 57 yield api.test('basic_lite') + api.properties( |
| 58 mastername='chromium.linux', |
| 59 buildername='Linux Builder', |
| 60 slavename='totallyaslave-m1', |
| 61 patch=False, |
| 62 revision='abc', |
| 63 lite=True |
| 64 ) |
57 yield api.test('basic_with_branch_heads') + api.properties( | 65 yield api.test('basic_with_branch_heads') + api.properties( |
58 mastername='chromium.linux', | 66 mastername='chromium.linux', |
59 buildername='Linux Builder', | 67 buildername='Linux Builder', |
60 slavename='totallyaslave-m1', | 68 slavename='totallyaslave-m1', |
61 with_branch_heads=True, | 69 with_branch_heads=True, |
62 suffix='with branch heads' | 70 suffix='with branch heads' |
63 ) | 71 ) |
64 yield api.test('basic_output_manifest') + api.properties( | 72 yield api.test('basic_output_manifest') + api.properties( |
65 mastername='chromium.linux', | 73 mastername='chromium.linux', |
66 buildername='Linux Builder', | 74 buildername='Linux Builder', |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 patch_url='http://src.chromium.org/foo/bar', | 171 patch_url='http://src.chromium.org/foo/bar', |
164 patch_project='v8', | 172 patch_project='v8', |
165 revisions={'src/v8': 'abc'} | 173 revisions={'src/v8': 'abc'} |
166 ) | 174 ) |
167 yield api.test('tryjob_v8_head_by_default') + api.properties.tryserver( | 175 yield api.test('tryjob_v8_head_by_default') + api.properties.tryserver( |
168 patch_project='v8', | 176 patch_project='v8', |
169 ) | 177 ) |
170 yield api.test('tryjob_gerrit_angle') + api.properties.tryserver_gerrit( | 178 yield api.test('tryjob_gerrit_angle') + api.properties.tryserver_gerrit( |
171 full_project_name='angle/angle', | 179 full_project_name='angle/angle', |
172 ) | 180 ) |
OLD | NEW |