Skip to content

Commit

Permalink
Change asan builders to only set compile by default.
Browse files Browse the repository at this point in the history
BUG=354052

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@258121 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
stip@chromium.org committed Mar 19, 2014
1 parent a2dd9e0 commit 971b08c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions PRESUBMIT.py
Original file line number Diff line number Diff line change
Expand Up @@ -1302,10 +1302,11 @@ def GetDefaultTryConfigs(bots=None):
'ui_unittests',
],
'ios_rel_device': ['compile'],
'linux_asan': ['defaulttests'],
'linux_asan': ['compile'],
'mac_asan': ['compile'],
#TODO(stip): Change the name of this builder to reflect that it's release.
'linux_gtk': standard_tests,
'linux_chromeos_asan': ['defaulttests'],
'linux_chromeos_asan': ['compile'],
'linux_chromium_chromeos_clang_dbg': ['defaulttests'],
'linux_chromium_chromeos_rel': ['defaulttests'],
'linux_chromium_compile_dbg': ['defaulttests'],
Expand Down
3 changes: 2 additions & 1 deletion tools/lsan/PRESUBMIT.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ def CheckChangeOnCommit(input_api, output_api):
def GetPreferredTryMasters(project, change):
return {
'tryserver.chromium': {
'linux_asan': set(['defaulttests']),
'linux_asan': set(['compile']),
'mac_asan': set(['compile']),
}
}

0 comments on commit 971b08c

Please sign in to comment.