| Index: scripts/slave/recipe_modules/chromium_tests/chromium_memory_fyi.py
|
| diff --git a/scripts/slave/recipe_modules/chromium_tests/chromium_memory_fyi.py b/scripts/slave/recipe_modules/chromium_tests/chromium_memory_fyi.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8c78cda9d121450be7308428fee3f9f4b8d78ac3
|
| --- /dev/null
|
| +++ b/scripts/slave/recipe_modules/chromium_tests/chromium_memory_fyi.py
|
| @@ -0,0 +1,114 @@
|
| +# Copyright 2014 The Chromium Authors. All rights reserved.
|
| +# Use of this source code is governed by a BSD-style license that can be
|
| +# found in the LICENSE file.
|
| +
|
| +from . import steps
|
| +
|
| +SPEC = {
|
| + 'settings': {
|
| + 'build_gs_bucket': 'chromium-memory-fyi-archive',
|
| + },
|
| + 'builders': {
|
| + 'Chromium Linux MSan Builder': {
|
| + 'chromium_config': 'chromium_msan',
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_apply_config': ['mb', 'prebuilt_instrumented_libraries'],
|
| + 'GYP_DEFINES': {
|
| + 'msan_track_origins': 2,
|
| + },
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Release',
|
| + 'TARGET_BITS': 64,
|
| + },
|
| + 'bot_type': 'builder',
|
| + 'testing': {'platform': 'linux'},
|
| + 'enable_swarming': True,
|
| + 'use_isolate': True,
|
| + },
|
| + 'Linux MSan Tests': {
|
| + 'chromium_config': 'chromium_msan',
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Release',
|
| + 'TARGET_BITS': 64,
|
| + },
|
| + 'bot_type': 'tester',
|
| + 'test_generators': [
|
| + steps.generate_gtest,
|
| + steps.generate_script,
|
| + steps.generate_isolated_script,
|
| + ],
|
| + 'parent_buildername': 'Chromium Linux MSan Builder',
|
| + 'testing': {'platform': 'linux'},
|
| + 'enable_swarming': True,
|
| + },
|
| + 'Chromium Linux ChromeOS MSan Builder': {
|
| + 'chromium_config': 'chromium_msan',
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_apply_config': ['mb', 'prebuilt_instrumented_libraries'],
|
| + 'GYP_DEFINES': {
|
| + 'msan_track_origins': 2,
|
| + 'chromeos': 1
|
| + },
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Release',
|
| + 'TARGET_BITS': 64,
|
| + },
|
| + 'bot_type': 'builder',
|
| + 'testing': {'platform': 'linux'},
|
| + 'enable_swarming': True,
|
| + 'use_isolate': True,
|
| + },
|
| + 'Linux ChromeOS MSan Tests': {
|
| + 'chromium_config': 'chromium_msan',
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Release',
|
| + 'TARGET_BITS': 64,
|
| + },
|
| + 'bot_type': 'tester',
|
| + 'test_generators': [
|
| + steps.generate_gtest,
|
| + steps.generate_script,
|
| + steps.generate_isolated_script,
|
| + ],
|
| + 'parent_buildername': 'Chromium Linux ChromeOS MSan Builder',
|
| + 'testing': {'platform': 'linux'},
|
| + 'enable_swarming': True,
|
| + },
|
| + 'Chromium Linux TSan Builder': {
|
| + 'chromium_config': 'chromium_tsan2',
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_apply_config': ['mb'],
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Release',
|
| + 'TARGET_BITS': 64,
|
| + },
|
| + 'bot_type': 'builder',
|
| + 'testing': {
|
| + 'platform': 'linux',
|
| + },
|
| + 'enable_swarming': True,
|
| + 'use_isolate': True,
|
| + },
|
| + 'Linux TSan Tests': {
|
| + 'chromium_config': 'chromium_tsan2',
|
| + 'gclient_config': 'chromium',
|
| + 'chromium_config_kwargs': {
|
| + 'BUILD_CONFIG': 'Release',
|
| + 'TARGET_BITS': 64,
|
| + },
|
| + 'bot_type': 'tester',
|
| + 'test_generators': [
|
| + steps.generate_gtest,
|
| + steps.generate_script,
|
| + steps.generate_isolated_script,
|
| + ],
|
| + 'parent_buildername': 'Chromium Linux TSan Builder',
|
| + 'testing': {
|
| + 'platform': 'linux',
|
| + },
|
| + 'enable_swarming': True,
|
| + },
|
| + },
|
| +}
|
|
|