Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1524)

Unified Diff: testing/buildbot/manage.py

Issue 2560633004: Run native_theme unittests everywhere we run views_unittests. (Closed)
Patch Set: hack manage.py Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « testing/buildbot/gn_isolate_map.pyl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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'])
« no previous file with comments | « testing/buildbot/gn_isolate_map.pyl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698