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

Side by Side Diff: projects.py

Issue 81453003: Run events_unittests on linux-aura, linux-chromeos, and windows for the commit-queue. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/commit-queue/
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 """Define the supported projects.""" 4 """Define the supported projects."""
5 5
6 import json 6 import json
7 import logging 7 import logging
8 import os 8 import os
9 import re 9 import re
10 import sys 10 import sys
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 # Use a smaller set of tests for *_aura, since there's a lot of overlap with 302 # Use a smaller set of tests for *_aura, since there's a lot of overlap with
303 # the corresponding *_rel builders. 303 # the corresponding *_rel builders.
304 # Note: *_aura are Release builders even if their names convey otherwise. 304 # Note: *_aura are Release builders even if their names convey otherwise.
305 linux_aura_tests = [ 305 linux_aura_tests = [
306 'app_list_unittests', 306 'app_list_unittests',
307 'aura_unittests', 307 'aura_unittests',
308 'browser_tests', 308 'browser_tests',
309 'compositor_unittests', 309 'compositor_unittests',
310 'content_browsertests', 310 'content_browsertests',
311 'content_unittests', 311 'content_unittests',
312 'events_unittests',
312 'interactive_ui_tests', 313 'interactive_ui_tests',
313 'unit_tests', 314 'unit_tests',
314 ] 315 ]
315 builders_and_tests = { 316 builders_and_tests = {
316 # TODO(maruel): Figure out a way to run 'sizes' where people can 317 # TODO(maruel): Figure out a way to run 'sizes' where people can
317 # effectively update the perf expectation correctly. This requires a 318 # effectively update the perf expectation correctly. This requires a
318 # clobber=True build running 'sizes'. 'sizes' is not accurate with 319 # clobber=True build running 'sizes'. 'sizes' is not accurate with
319 # incremental build. Reference: 320 # incremental build. Reference:
320 # http://chromium.org/developers/tree-sheriffs/perf-sheriffs. 321 # http://chromium.org/developers/tree-sheriffs/perf-sheriffs.
321 # TODO(maruel): An option would be to run 'sizes' but not count a failure 322 # TODO(maruel): An option would be to run 'sizes' but not count a failure
(...skipping 17 matching lines...) Expand all
339 'linux_chromeos_clang': ['compile'], 340 'linux_chromeos_clang': ['compile'],
340 # Note: It is a Release builder even if its name convey otherwise. 341 # Note: It is a Release builder even if its name convey otherwise.
341 'linux_chromeos': standard_tests + [ 342 'linux_chromeos': standard_tests + [
342 'app_list_unittests', 343 'app_list_unittests',
343 'aura_unittests', 344 'aura_unittests',
344 'ash_unittests', 345 'ash_unittests',
345 'chromeos_unittests', 346 'chromeos_unittests',
346 'components_unittests', 347 'components_unittests',
347 'dbus_unittests', 348 'dbus_unittests',
348 'device_unittests', 349 'device_unittests',
350 'events_unittests',
349 'google_apis_unittests', 351 'google_apis_unittests',
350 'sandbox_linux_unittests', 352 'sandbox_linux_unittests',
351 ], 353 ],
352 'linux_rel': standard_tests + [ 354 'linux_rel': standard_tests + [
353 'cc_unittests', 355 'cc_unittests',
354 'chromedriver2_unittests', 356 'chromedriver2_unittests',
355 'components_unittests', 357 'components_unittests',
356 'google_apis_unittests', 358 'google_apis_unittests',
357 'nacl_integration', 359 'nacl_integration',
358 'remoting_unittests', 360 'remoting_unittests',
(...skipping 18 matching lines...) Expand all
377 'app_list_unittests', 379 'app_list_unittests',
378 'ash_unittests', 380 'ash_unittests',
379 'aura_unittests', 381 'aura_unittests',
380 'cc_unittests', 382 'cc_unittests',
381 'chrome_frame_net_tests', 383 'chrome_frame_net_tests',
382 'chrome_frame_tests', 384 'chrome_frame_tests',
383 'chrome_frame_unittests', 385 'chrome_frame_unittests',
384 'chromedriver2_unittests', 386 'chromedriver2_unittests',
385 'components_unittests', 387 'components_unittests',
386 'compositor_unittests', 388 'compositor_unittests',
389 'events_unittests',
ghost stip (do not use) 2013/11/22 23:12:02 I don't see these on all the windows bots, only on
sadrul 2013/11/22 23:13:07 Indeed. I added these for win-rel bots at: https:/
387 'installer_util_unittests', 390 'installer_util_unittests',
388 'mini_installer_test', 391 'mini_installer_test',
389 # http://crbug.com/319558 392 # http://crbug.com/319558
390 #'nacl_integration', 393 #'nacl_integration',
391 'remoting_unittests', 394 'remoting_unittests',
392 'sync_integration_tests', 395 'sync_integration_tests',
393 'telemetry_unittests', 396 'telemetry_unittests',
394 'views_unittests', 397 'views_unittests',
395 ], 398 ],
396 'win_x64_rel': [ 399 'win_x64_rel': [
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after
740 """List the projects that can be managed by the commit queue.""" 743 """List the projects that can be managed by the commit queue."""
741 return sorted( 744 return sorted(
742 x[5:] for x in dir(sys.modules[__name__]) if x.startswith('_gen_')) 745 x[5:] for x in dir(sys.modules[__name__]) if x.startswith('_gen_'))
743 746
744 747
745 def load_project(project, user, root_dir, rietveld_obj, no_try): 748 def load_project(project, user, root_dir, rietveld_obj, no_try):
746 """Loads the specified project.""" 749 """Loads the specified project."""
747 assert os.path.isabs(root_dir) 750 assert os.path.isabs(root_dir)
748 return getattr(sys.modules[__name__], '_gen_' + project)( 751 return getattr(sys.modules[__name__], '_gen_' + project)(
749 user, root_dir, rietveld_obj, no_try) 752 user, root_dir, rietveld_obj, no_try)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698