| 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': {
|
|
|