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

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: 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 e9e6a47288726f5321c89b6a56e6e761aa9838f1..c1a2deb2907b09879132eeb0b90491cf47fe520a 100644
--- a/masters/master.chromium.fyi/master.cfg
+++ b/masters/master.chromium.fyi/master.cfg
@@ -857,31 +857,11 @@ f_chromium_win_x64 = win_out().ChromiumFactory(
'GYP_DEFINES': 'target_arch=x64',
}})
-win_clang_tests = [
Reid Kleckner 2014/06/10 23:14:49 Given that content_unittests is missing, maybe we
- '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',
-]
-
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,
+ tests=tests_win_1 + tests_win_2,
+ options=['--build-tool=ninja', '--', 'chromium_builder_tests'],
factory_properties={
'gclient_env': {
'GYP_DEFINES': 'clang=1',
@@ -890,8 +870,8 @@ f_chromium_win_clang = win_out().ChromiumFactory(
f_chromium_win_clang_dbg = win_out().ChromiumFactory(
slave_type='BuilderTester',
target='Debug',
- tests=win_clang_tests,
- options=['--build-tool=ninja', '--'] + win_clang_tests,
+ tests=tests_win_1 + tests_win_2,
+ options=['--build-tool=ninja', '--', 'chromium_builder_tests'],
factory_properties={
'gclient_env': {
'GYP_DEFINES': 'clang=1 component=static_library',
@@ -900,8 +880,8 @@ 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,
+ tests=without(tests_win_1 + tests_win_2, ['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