| 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 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 buildername='Experimental Builder', | 129 buildername='Experimental Builder', |
| 130 slavename='somehost', | 130 slavename='somehost', |
| 131 force=1 | 131 force=1 |
| 132 ) | 132 ) |
| 133 yield api.test('no_shallow') + api.properties( | 133 yield api.test('no_shallow') + api.properties( |
| 134 mastername='experimental', | 134 mastername='experimental', |
| 135 buildername='Experimental Builder', | 135 buildername='Experimental Builder', |
| 136 slavename='somehost', | 136 slavename='somehost', |
| 137 no_shallow=1 | 137 no_shallow=1 |
| 138 ) | 138 ) |
| 139 yield api.test('off') + api.properties( | |
| 140 mastername='experimental', | |
| 141 buildername='Experimental Builder', | |
| 142 slavename='somehost', | |
| 143 ) | |
| 144 yield api.test('clobber') + api.properties( | 139 yield api.test('clobber') + api.properties( |
| 145 mastername='experimental', | 140 mastername='experimental', |
| 146 buildername='Experimental Builder', | 141 buildername='Experimental Builder', |
| 147 slavename='somehost', | 142 slavename='somehost', |
| 148 clobber=1 | 143 clobber=1 |
| 149 ) | 144 ) |
| 150 yield api.test('reset_root_solution_revision') + api.properties( | 145 yield api.test('reset_root_solution_revision') + api.properties( |
| 151 mastername='experimental', | 146 mastername='experimental', |
| 152 buildername='Experimental Builder', | 147 buildername='Experimental Builder', |
| 153 slavename='somehost', | 148 slavename='somehost', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 180 patch_url='http://src.chromium.org/foo/bar', | 175 patch_url='http://src.chromium.org/foo/bar', |
| 181 patch_project='v8', | 176 patch_project='v8', |
| 182 revisions={'src/v8': 'abc'} | 177 revisions={'src/v8': 'abc'} |
| 183 ) | 178 ) |
| 184 yield api.test('tryjob_v8_head_by_default') + api.properties.tryserver( | 179 yield api.test('tryjob_v8_head_by_default') + api.properties.tryserver( |
| 185 patch_project='v8', | 180 patch_project='v8', |
| 186 ) | 181 ) |
| 187 yield api.test('tryjob_gerrit_angle') + api.properties.tryserver_gerrit( | 182 yield api.test('tryjob_gerrit_angle') + api.properties.tryserver_gerrit( |
| 188 full_project_name='angle/angle', | 183 full_project_name='angle/angle', |
| 189 ) | 184 ) |
| OLD | NEW |