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

Unified Diff: masters/master.chromium.fyi/master.cfg

Issue 323223002: Win Clang FYI bots: build chromium_builder_tests and run the standard set of tests (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Rebase, add comment Created 6 years, 6 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: masters/master.chromium.fyi/master.cfg
diff --git a/masters/master.chromium.fyi/master.cfg b/masters/master.chromium.fyi/master.cfg
index 1dcc37c7869946dbbebc522809e99d68a15ffae9..91508bbfe8f3a5bcef915448ba005c93d121920d 100644
--- a/masters/master.chromium.fyi/master.cfg
+++ b/masters/master.chromium.fyi/master.cfg
@@ -852,31 +852,13 @@ f_chromium_win_x64 = win_out().ChromiumFactory(
'GYP_DEFINES': 'target_arch=x64',
}})
-win_clang_tests = [
- 'base_unittests',
- 'browser_tests',
- 'cc_unittests',
- 'components_unittests',
- 'content_unittests',
- 'crypto_unittests',
- 'ipc_tests',
- 'net_unittests',
- 'printing_unittests',
- 'remoting_unittests',
- 'sbox_integration_tests',
- 'sbox_unittests',
- 'sbox_validation_tests',
- 'sql_unittests',
- 'unit_tests',
- 'url_unittests',
-]
+win_clang_tests = tests_win_1 + tests_win_2 + ['content_unittests']
f_chromium_win_clang = win_out().ChromiumFactory(
slave_type='BuilderTester',
target='Release',
tests=win_clang_tests,
- # TODO(hans): Build chromium_builder_tests when LLVM PR11170 is fixed.
- options=['--build-tool=ninja', '--'] + win_clang_tests,
+ options=['--build-tool=ninja', '--', 'chromium_builder_tests'],
factory_properties={
'gclient_env': {
'GYP_DEFINES': 'clang=1',
@@ -887,7 +869,7 @@ f_chromium_win_clang_dbg = win_out().ChromiumFactory(
slave_type='BuilderTester',
target='Debug',
tests=win_clang_tests,
- options=['--build-tool=ninja', '--'] + win_clang_tests,
+ options=['--build-tool=ninja', '--', 'chromium_builder_tests'],
factory_properties={
'gclient_env': {
'GYP_DEFINES': 'clang=1 component=static_library',
@@ -897,8 +879,9 @@ f_chromium_win_clang_dbg = win_out().ChromiumFactory(
f_chromium_win_clang_asan = win_out().ChromiumFactory(
slave_type='BuilderTester',
target='Release',
- tests=win_clang_tests,
- options=['--build-tool=ninja', '--'] + win_clang_tests,
+ # ASan doesn't support sandboxing on Windows yet (http://crbug.com/382867).
+ tests=without(win_clang_tests, ['sandbox']),
+ options=['--build-tool=ninja', '--', 'chromium_builder_tests'],
factory_properties={
'asan': True,
'gclient_env': {
« 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