| 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 'chromium', | 7 'chromium', |
| 8 'gclient', | 8 'gclient', |
| 9 'path', | 9 'path', |
| 10 'properties', | 10 'properties', |
| 11 'python', | 11 'python', |
| 12 'raw_io', | 12 'raw_io', |
| 13 'step', | 13 'step', |
| 14 'v8', |
| 14 ] | 15 ] |
| 15 | 16 |
| 16 def GenSteps(api): | 17 def GenSteps(api): |
| 17 api.chromium.cleanup_temp() | 18 api.chromium.cleanup_temp() |
| 18 api.gclient.set_config('v8') | 19 api.gclient.set_config('v8') |
| 19 api.bot_update.ensure_checkout(force=True, no_shallow=True) | 20 api.bot_update.ensure_checkout(force=True, no_shallow=True) |
| 20 | 21 |
| 21 step_result = api.python( | 22 step_result = api.python( |
| 22 'check roll status', | 23 'check roll status', |
| 23 api.path['build'].join('scripts', 'tools', 'runit.py'), | 24 api.path['build'].join('scripts', 'tools', 'runit.py'), |
| (...skipping 23 matching lines...) Expand all Loading... |
| 47 | 48 |
| 48 | 49 |
| 49 def GenTests(api): | 50 def GenTests(api): |
| 50 yield api.test('standard') + api.properties.generic(mastername='client.v8') | 51 yield api.test('standard') + api.properties.generic(mastername='client.v8') |
| 51 yield (api.test('rolling_deactivated') + | 52 yield (api.test('rolling_deactivated') + |
| 52 api.properties.generic(mastername='client.v8') + | 53 api.properties.generic(mastername='client.v8') + |
| 53 api.override_step_data( | 54 api.override_step_data( |
| 54 'check roll status', api.raw_io.stream_output('0', stream='stdout')) | 55 'check roll status', api.raw_io.stream_output('0', stream='stdout')) |
| 55 ) | 56 ) |
| 56 | 57 |
| OLD | NEW |