Skip to content

Commit

Permalink
Swap linux_aura for linux_gtk in PRESUBMIT try stuff.
Browse files Browse the repository at this point in the history
Needs to land at the same time as the master restart for
https://codereview.chromium.org/151393003/

BUG=336581
NOTRY=true
R=phajdan.jr@chromium.org

Review URL: https://codereview.chromium.org/147233003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@249591 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
agable@chromium.org committed Feb 7, 2014
1 parent 9577443 commit 71afb4e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 16 deletions.
19 changes: 6 additions & 13 deletions PRESUBMIT.py
Original file line number Diff line number Diff line change
Expand Up @@ -1244,17 +1244,6 @@ def GetDefaultTryConfigs(bots=None):
#'webkit_unit_tests',
]

linux_aura_tests = [
'app_list_unittests',
'aura_unittests',
'browser_tests',
'compositor_unittests',
'content_browsertests',
'content_unittests',
'events_unittests',
'interactive_ui_tests',
'unit_tests',
]
builders_and_tests = {
# TODO(maruel): Figure out a way to run 'sizes' where people can
# effectively update the perf expectation correctly. This requires a
Expand All @@ -1280,7 +1269,7 @@ def GetDefaultTryConfigs(bots=None):
'ios_rel_device': ['compile'],
'linux_asan': ['defaulttests'],
#TODO(stip): Change the name of this builder to reflect that it's release.
'linux_aura': linux_aura_tests,
'linux_gtk': standard_tests,
'linux_chromeos_asan': ['defaulttests'],
'linux_chromeos_clang': ['compile'],
# Note: It is a Release builder even if its name convey otherwise.
Expand All @@ -1301,9 +1290,13 @@ def GetDefaultTryConfigs(bots=None):
'linux_clang': ['compile'],
'linux_nacl_sdk_build': ['compile'],
'linux_rel': standard_tests + [
'app_list_unittests',
'aura_unittests',
'cc_unittests',
'chromedriver_unittests',
'components_unittests',
'compositor_unittests',
'events_unittests',
'google_apis_unittests',
'nacl_integration',
'remoting_unittests',
Expand Down Expand Up @@ -1429,7 +1422,7 @@ def GetPreferredTrySlaves(project, change):
'android_dbg',
'ios_dbg_simulator',
'ios_rel_device',
'linux_aura',
'linux_gtk',
'linux_asan',
'linux_chromeos',
'linux_clang',
Expand Down
4 changes: 2 additions & 2 deletions chrome/browser/ui/libgtk2ui/PRESUBMIT.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

"""Chromium presubmit script for src/chrome/browser/externsions.
"""Chromium presubmit script for src/chrome/browser/ui/libgtk2ui.
See http://dev.chromium.org/developers/how-tos/depottools/presubmit-scripts
for more details on the presubmit API built into gcl.
"""

def GetPreferredTrySlaves():
return ['linux_aura']
return ['linux_rel']
2 changes: 1 addition & 1 deletion ui/events/PRESUBMIT.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def GetPreferredTrySlaves():
'keyboard_unittests',
'views_unittests'])

return [('linux_aura', tests),
return [('linux_rel', tests),
('linux_chromeos', tests),
('linux_chromeos_asan', tests),
('win', tests),
Expand Down

0 comments on commit 71afb4e

Please sign in to comment.