Chromium Code Reviews| Index: testing/buildbot/manage.py |
| diff --git a/testing/buildbot/manage.py b/testing/buildbot/manage.py |
| index c3e2a95eca157750cc383753cf712e6e821fc766..de84d3613db54d3dac3aa1fd034a3068dbe49f4c 100755 |
| --- a/testing/buildbot/manage.py |
| +++ b/testing/buildbot/manage.py |
| @@ -316,6 +316,12 @@ def process_file(mode, test_name, tests_location, filepath, ninja_targets, |
| d.setdefault('swarming', {}).setdefault( |
| 'can_use_on_swarming_builders', False) |
| + if 'views_unittests' in seen and 'native_theme_unittests' not in seen: |
|
sky
2016/12/09 16:03:19
AWESOME!
|
| + data = [d for d in gtest_tests if d['test'] == 'views_unittests'][0].copy( |
| + ) |
| + data['test'] = 'native_theme_unittests' |
| + gtest_tests.append(data) |
| + |
| if gtest_tests: |
| config[builder]['gtest_tests'] = sorted( |
| gtest_tests, key=lambda x: x['test']) |