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

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

Issue 2010953002: Change chromium.memory.fyi to chromium.memory.full (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 recipe_engine.types import freeze 5 from recipe_engine.types import freeze
6 6
7 7
8 def simple_bot(bot_id, analyze_mode=None): 8 def simple_bot(bot_id, analyze_mode=None):
9 return { 9 return {
10 'bot_ids': [bot_id], 10 'bot_ids': [bot_id],
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 }, analyze_mode='compile'), 317 }, analyze_mode='compile'),
318 'chromeos_daisy_chromium_compile_only_ng': simple_bot({ 318 'chromeos_daisy_chromium_compile_only_ng': simple_bot({
319 'mastername': 'chromium.chromiumos', 319 'mastername': 'chromium.chromiumos',
320 'buildername': 'ChromiumOS daisy Compile', 320 'buildername': 'ChromiumOS daisy Compile',
321 }, analyze_mode='compile'), 321 }, analyze_mode='compile'),
322 'linux_chromium_chromeos_compile_rel_ng': simple_bot({ 322 'linux_chromium_chromeos_compile_rel_ng': simple_bot({
323 'mastername': 'chromium.chromiumos', 323 'mastername': 'chromium.chromiumos',
324 'buildername': 'Linux ChromiumOS Builder', 324 'buildername': 'Linux ChromiumOS Builder',
325 }, analyze_mode='compile'), 325 }, analyze_mode='compile'),
326 'linux_chromium_chromeos_msan_rel_ng': simple_bot({ 326 'linux_chromium_chromeos_msan_rel_ng': simple_bot({
327 'mastername': 'chromium.memory.fyi', 327 'mastername': 'chromium.memory.full',
328 'buildername': 'Chromium Linux ChromeOS MSan Builder', 328 'buildername': 'Chromium Linux ChromeOS MSan Builder',
329 'tester': 'Linux ChromeOS MSan Tests', 329 'tester': 'Linux ChromeOS MSan Tests',
330 }), 330 }),
331 'linux_chromium_chromeos_ozone_rel_ng': simple_bot({ 331 'linux_chromium_chromeos_ozone_rel_ng': simple_bot({
332 'mastername': 'chromium.chromiumos', 332 'mastername': 'chromium.chromiumos',
333 'buildername': 'Linux ChromiumOS Ozone Builder', 333 'buildername': 'Linux ChromiumOS Ozone Builder',
334 'tester': 'Linux ChromiumOS Ozone Tests (1)', 334 'tester': 'Linux ChromiumOS Ozone Tests (1)',
335 }), 335 }),
336 'linux_chromium_compile_dbg_32_ng': simple_bot({ 336 'linux_chromium_compile_dbg_32_ng': simple_bot({
337 'mastername': 'chromium.linux', 337 'mastername': 'chromium.linux',
338 'buildername': 'Linux Builder (dbg)(32)', 338 'buildername': 'Linux Builder (dbg)(32)',
339 }, analyze_mode='compile'), 339 }, analyze_mode='compile'),
340 'linux_chromium_msan_rel_ng': simple_bot({ 340 'linux_chromium_msan_rel_ng': simple_bot({
341 'mastername': 'chromium.memory.fyi', 341 'mastername': 'chromium.memory.full',
342 'buildername': 'Chromium Linux MSan Builder', 342 'buildername': 'Chromium Linux MSan Builder',
343 'tester': 'Linux MSan Tests', 343 'tester': 'Linux MSan Tests',
344 }), 344 }),
345 'linux_chromium_tsan_rel_ng': simple_bot({ 345 'linux_chromium_tsan_rel_ng': simple_bot({
346 'mastername': 'chromium.memory.fyi', 346 'mastername': 'chromium.memory.full',
347 'buildername': 'Chromium Linux TSan Builder', 347 'buildername': 'Chromium Linux TSan Builder',
348 'tester': 'Linux TSan Tests', 348 'tester': 'Linux TSan Tests',
349 }), 349 }),
350 'linux_chromium_cfi_rel_ng': simple_bot({ 350 'linux_chromium_cfi_rel_ng': simple_bot({
351 'mastername': 'chromium.fyi', 351 'mastername': 'chromium.fyi',
352 'buildername': 'CFI Linux', 352 'buildername': 'CFI Linux',
353 }), 353 }),
354 'linux_site_isolation': simple_bot({ 354 'linux_site_isolation': simple_bot({
355 'mastername': 'chromium.fyi', 355 'mastername': 'chromium.fyi',
356 'buildername': 'Site Isolation Linux', 356 'buildername': 'Site Isolation Linux',
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
571 'mastername': 'client.v8.fyi', 571 'mastername': 'client.v8.fyi',
572 'buildername': 'V8 Linux GN', 572 'buildername': 'V8 Linux GN',
573 }), 573 }),
574 'v8_android_chromium_gn_dbg': simple_bot({ 574 'v8_android_chromium_gn_dbg': simple_bot({
575 'mastername': 'client.v8.fyi', 575 'mastername': 'client.v8.fyi',
576 'buildername': 'V8 Android GN (dbg)', 576 'buildername': 'V8 Android GN (dbg)',
577 }), 577 }),
578 }, 578 },
579 }, 579 },
580 }) 580 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698