Chromium Code Reviews| Index: scripts/slave/recipe_modules/chromium_tests/chromium_linux.py |
| diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_linux.py b/scripts/slave/recipe_modules/chromium_tests/chromium_linux.py |
| index 68f395551bb4867defa29fb1a7866adeac5bda9a..5679081f40536b22722ec953dc1b864918b8bd64 100644 |
| --- a/scripts/slave/recipe_modules/chromium_tests/chromium_linux.py |
| +++ b/scripts/slave/recipe_modules/chromium_tests/chromium_linux.py |
| @@ -139,6 +139,133 @@ SPEC = { |
| 'enable_swarming': True, |
| }, |
| + # for testing trusty |
| + 'Linux Builder Trusty': { |
| + 'chromium_config': 'chromium', |
| + 'chromium_apply_config': [ |
| + 'mb', |
| + 'ninja_confirm_noop', |
| + 'archive_gpu_tests', |
| + 'chrome_with_codecs' |
| + ], |
| + 'gclient_config': 'chromium', |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Release', |
| + 'TARGET_BITS': 64, |
| + }, |
| + 'bot_type': 'builder', |
| + 'compile_targets': [ |
| + 'chromium_swarm_tests', |
| + ], |
| + 'testing': { |
| + 'platform': 'linux', |
| + }, |
| + 'use_isolate': True, |
| + 'enable_swarming': True, |
| + 'checkout_dir': 'linux', |
| + }, |
| + 'Linux Tests Trusty': { |
| + 'chromium_config': 'chromium', |
| + 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], |
| + 'gclient_config': 'chromium', |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Release', |
| + 'TARGET_BITS': 64, |
| + }, |
| + 'bot_type': 'tester', |
| + 'test_generators': [ |
|
Paweł Hajdan Jr.
2016/09/29 22:28:35
Test generators are no longer used (they still wer
|
| + steps.generate_gtest, |
| + steps.generate_script, |
| + steps.generate_isolated_script, |
| + ], |
| + 'parent_buildername': 'Linux Builder Trusty', |
| + 'testing': { |
| + 'platform': 'linux', |
| + }, |
| + 'enable_swarming': True, |
| + }, |
| + 'Linux Builder Trusty (dbg)(32)': { |
| + 'chromium_config': 'chromium', |
| + 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], |
| + 'gclient_config': 'chromium', |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Debug', |
| + 'TARGET_BITS': 32, |
| + }, |
| + 'bot_type': 'builder', |
| + 'compile_targets': [ |
| + 'google_apis_unittests', |
| + 'sync_integration_tests', |
| + ], |
| + 'testing': { |
| + 'platform': 'linux', |
| + }, |
| + 'use_isolate': True, |
| + 'enable_swarming': True, |
| + 'checkout_dir': 'linux', |
| + # Temporary hack because the binaries are too large to be isolated. |
| + 'GYP_DEFINES': { |
| + 'fastbuild': 2, |
| + }, |
| + }, |
| + 'Linux Tests Trusty (dbg)(1)(32)': { |
| + 'chromium_config': 'chromium', |
| + 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], |
| + 'gclient_config': 'chromium', |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Debug', |
| + 'TARGET_BITS': 32, |
| + }, |
| + 'bot_type': 'tester', |
| + 'test_generators': [ |
| + steps.generate_gtest, |
| + steps.generate_script, |
| + steps.generate_isolated_script, |
| + ], |
| + 'parent_buildername': 'Linux Builder Trusty (dbg)(32)', |
| + 'testing': { |
| + 'platform': 'linux', |
| + }, |
| + 'enable_swarming': True, |
| + }, |
| + |
| + 'Linux Builder Trusty (dbg)': { |
| + 'chromium_config': 'chromium', |
| + 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], |
| + 'gclient_config': 'chromium', |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Debug', |
| + 'TARGET_BITS': 64, |
| + }, |
| + 'bot_type': 'builder', |
| + 'testing': { |
| + 'platform': 'linux', |
| + }, |
| + 'enable_swarming': True, |
| + 'use_isolate': True, |
| + 'checkout_dir': 'linux', |
| + }, |
| + 'Linux Tests Trusty (dbg)(1)': { |
| + 'chromium_config': 'chromium', |
| + 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], |
| + 'gclient_config': 'chromium', |
| + 'chromium_config_kwargs': { |
| + 'BUILD_CONFIG': 'Debug', |
| + 'TARGET_BITS': 64, |
| + }, |
| + 'bot_type': 'tester', |
| + 'test_generators': [ |
| + steps.generate_gtest, |
| + steps.generate_script, |
| + steps.generate_isolated_script, |
| + ], |
| + 'parent_buildername': 'Linux Builder Trusty (dbg)', |
| + 'testing': { |
| + 'platform': 'linux', |
| + }, |
| + 'enable_swarming': True, |
| + }, |
| + |
| 'Android Arm64 Builder (dbg)': { |
| 'chromium_config': 'android', |
| 'chromium_apply_config': ['chrome_with_codecs', 'mb'], |