Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2015 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 'auto_bisect', | 6 'auto_bisect', |
| 7 'chromium_tests', | 7 'chromium_tests', |
| 8 'platform', | 8 'platform', |
| 9 'properties', | 9 'properties', |
| 10 ] | 10 ] |
| 11 | 11 |
| 12 def GenSteps(api): | 12 def GenSteps(api): |
| 13 mastername = api.properties.get('mastername') | 13 mastername = api.properties.get('mastername') |
| 14 buildername = api.properties.get('buildername') | 14 buildername = api.properties.get('buildername') |
| 15 api.chromium_tests.load_builder_configs(mastername) | |
|
Paweł Hajdan Jr.
2015/06/15 09:09:29
This recipe should be using its own configs rather
Adrian Kuegel
2015/06/15 12:33:22
Done.
| |
| 15 api.chromium_tests.configure_build(mastername, buildername) | 16 api.chromium_tests.configure_build(mastername, buildername) |
| 16 api.chromium_tests.prepare_checkout(mastername, buildername) | 17 api.chromium_tests.prepare_checkout(mastername, buildername) |
| 17 api.auto_bisect.run_bisect_script() | 18 api.auto_bisect.run_bisect_script() |
| 18 | 19 |
| 19 def GenTests(api): | 20 def GenTests(api): |
| 20 yield (api.test('basic') | 21 yield (api.test('basic') |
| 21 +api.properties.tryserver( | 22 +api.properties.tryserver( |
| 22 mastername='tryserver.chromium.perf', | 23 mastername='tryserver.chromium.perf', |
| 23 buildername='linux_perf_bisect')) | 24 buildername='linux_perf_bisect')) |
| OLD | NEW |