| OLD | NEW |
| (Empty) | |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 from . import steps |
| 6 |
| 7 SPEC = { |
| 8 'settings': { |
| 9 'build_gs_bucket': 'chromium-memory-fyi-archive', |
| 10 }, |
| 11 'builders': { |
| 12 'Chromium Linux MSan Builder': { |
| 13 'chromium_config': 'chromium_msan', |
| 14 'gclient_config': 'chromium', |
| 15 'chromium_apply_config': ['mb', 'prebuilt_instrumented_libraries'], |
| 16 'GYP_DEFINES': { |
| 17 'msan_track_origins': 2, |
| 18 }, |
| 19 'chromium_config_kwargs': { |
| 20 'BUILD_CONFIG': 'Release', |
| 21 'TARGET_BITS': 64, |
| 22 }, |
| 23 'bot_type': 'builder', |
| 24 'testing': {'platform': 'linux'}, |
| 25 'enable_swarming': True, |
| 26 'use_isolate': True, |
| 27 }, |
| 28 'Linux MSan Tests': { |
| 29 'chromium_config': 'chromium_msan', |
| 30 'gclient_config': 'chromium', |
| 31 'chromium_config_kwargs': { |
| 32 'BUILD_CONFIG': 'Release', |
| 33 'TARGET_BITS': 64, |
| 34 }, |
| 35 'bot_type': 'tester', |
| 36 'test_generators': [ |
| 37 steps.generate_gtest, |
| 38 steps.generate_script, |
| 39 steps.generate_isolated_script, |
| 40 ], |
| 41 'parent_buildername': 'Chromium Linux MSan Builder', |
| 42 'testing': {'platform': 'linux'}, |
| 43 'enable_swarming': True, |
| 44 }, |
| 45 'Chromium Linux ChromeOS MSan Builder': { |
| 46 'chromium_config': 'chromium_msan', |
| 47 'gclient_config': 'chromium', |
| 48 'chromium_apply_config': ['mb', 'prebuilt_instrumented_libraries'], |
| 49 'GYP_DEFINES': { |
| 50 'msan_track_origins': 2, |
| 51 'chromeos': 1 |
| 52 }, |
| 53 'chromium_config_kwargs': { |
| 54 'BUILD_CONFIG': 'Release', |
| 55 'TARGET_BITS': 64, |
| 56 }, |
| 57 'bot_type': 'builder', |
| 58 'testing': {'platform': 'linux'}, |
| 59 'enable_swarming': True, |
| 60 'use_isolate': True, |
| 61 }, |
| 62 'Linux ChromeOS MSan Tests': { |
| 63 'chromium_config': 'chromium_msan', |
| 64 'gclient_config': 'chromium', |
| 65 'chromium_config_kwargs': { |
| 66 'BUILD_CONFIG': 'Release', |
| 67 'TARGET_BITS': 64, |
| 68 }, |
| 69 'bot_type': 'tester', |
| 70 'test_generators': [ |
| 71 steps.generate_gtest, |
| 72 steps.generate_script, |
| 73 steps.generate_isolated_script, |
| 74 ], |
| 75 'parent_buildername': 'Chromium Linux ChromeOS MSan Builder', |
| 76 'testing': {'platform': 'linux'}, |
| 77 'enable_swarming': True, |
| 78 }, |
| 79 'Chromium Linux TSan Builder': { |
| 80 'chromium_config': 'chromium_tsan2', |
| 81 'gclient_config': 'chromium', |
| 82 'chromium_apply_config': ['mb'], |
| 83 'chromium_config_kwargs': { |
| 84 'BUILD_CONFIG': 'Release', |
| 85 'TARGET_BITS': 64, |
| 86 }, |
| 87 'bot_type': 'builder', |
| 88 'testing': { |
| 89 'platform': 'linux', |
| 90 }, |
| 91 'enable_swarming': True, |
| 92 'use_isolate': True, |
| 93 }, |
| 94 'Linux TSan Tests': { |
| 95 'chromium_config': 'chromium_tsan2', |
| 96 'gclient_config': 'chromium', |
| 97 'chromium_config_kwargs': { |
| 98 'BUILD_CONFIG': 'Release', |
| 99 'TARGET_BITS': 64, |
| 100 }, |
| 101 'bot_type': 'tester', |
| 102 'test_generators': [ |
| 103 steps.generate_gtest, |
| 104 steps.generate_script, |
| 105 steps.generate_isolated_script, |
| 106 ], |
| 107 'parent_buildername': 'Chromium Linux TSan Builder', |
| 108 'testing': { |
| 109 'platform': 'linux', |
| 110 }, |
| 111 'enable_swarming': True, |
| 112 }, |
| 113 }, |
| 114 } |
| OLD | NEW |