| 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/platform', | 8 'recipe_engine/platform', |
| 9 'recipe_engine/path', | 9 'recipe_engine/path', |
| 10 'recipe_engine/properties', | 10 'recipe_engine/properties', |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 revisions={'src/v8': 'abc'} | 139 revisions={'src/v8': 'abc'} |
| 140 ) | 140 ) |
| 141 yield api.test('tryjob_v8_head_by_default') + api.properties.tryserver( | 141 yield api.test('tryjob_v8_head_by_default') + api.properties.tryserver( |
| 142 patch_project='v8', | 142 patch_project='v8', |
| 143 ) | 143 ) |
| 144 yield api.test('tryjob_gerrit_angle') + api.properties.tryserver( | 144 yield api.test('tryjob_gerrit_angle') + api.properties.tryserver( |
| 145 gerrit_project='angle/angle', | 145 gerrit_project='angle/angle', |
| 146 patch_issue=338811, | 146 patch_issue=338811, |
| 147 patch_set=3, | 147 patch_set=3, |
| 148 ) | 148 ) |
| 149 yield (api.test('tryjob_gerrit_angle_deprecated') + | 149 yield api.test('tryjob_gerrit_angle_deprecated') + api.properties.tryserver( |
| 150 api.properties.tryserver_gerrit(full_project_name='angle/angle') | 150 patch_project='angle/angle', |
| 151 gerrit='https://chromium-review.googlesource.com', |
| 152 patch_storage='gerrit', |
| 153 repository='https://chromium.googlesource.com/angle/angle', |
| 154 rietveld=None, |
| 155 **{ |
| 156 'event.change.id': 'angle%2Fangle~master~Ideadbeaf', |
| 157 'event.change.number': 338811, |
| 158 'event.change.url': |
| 159 'https://chromium-review.googlesource.com/#/c/338811', |
| 160 'event.patchSet.ref': 'refs/changes/11/338811/3', |
| 161 } |
| 151 ) | 162 ) |
| OLD | NEW |