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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_memory_full.py

Issue 2184603003: Move memory FYI slaves to memory full master and switch configs over. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Update expectations Created 4 years, 4 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from . import steps 5 from . import steps
6 6
7 SPEC = { 7 SPEC = {
8 'settings': { 8 'settings': {
9 'build_gs_bucket': 'chromium-memory-fyi-archive', 9 'build_gs_bucket': 'chromium-memory-full-archive',
10 }, 10 },
11 'builders': { 11 'builders': {
12 'Chromium Linux MSan Builder': { 12 'Chromium Linux MSan Builder': {
13 'chromium_config': 'chromium_msan', 13 'chromium_config': 'chromium_msan',
14 'gclient_config': 'chromium', 14 'gclient_config': 'chromium',
15 'chromium_apply_config': ['mb', 'prebuilt_instrumented_libraries'], 15 'chromium_apply_config': ['mb', 'prebuilt_instrumented_libraries'],
16 'GYP_DEFINES': { 16 'GYP_DEFINES': {
17 'msan_track_origins': 2, 17 'msan_track_origins': 2,
18 }, 18 },
19 'chromium_config_kwargs': { 19 'chromium_config_kwargs': {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 steps.generate_isolated_script, 105 steps.generate_isolated_script,
106 ], 106 ],
107 'parent_buildername': 'Chromium Linux TSan Builder', 107 'parent_buildername': 'Chromium Linux TSan Builder',
108 'testing': { 108 'testing': {
109 'platform': 'linux', 109 'platform': 'linux',
110 }, 110 },
111 'enable_swarming': True, 111 'enable_swarming': True,
112 }, 112 },
113 }, 113 },
114 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698