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

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

Issue 2468363002: Add a config for optional UBSan trybot. (Closed)
Patch Set: Created 4 years, 1 month 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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 'tester': 'Linux TSan Tests', 353 'tester': 'Linux TSan Tests',
354 }), 354 }),
355 'linux_chromium_headless_rel': simple_bot({ 355 'linux_chromium_headless_rel': simple_bot({
356 'mastername': 'chromium.fyi', 356 'mastername': 'chromium.fyi',
357 'buildername': 'Headless Linux (dbg)', 357 'buildername': 'Headless Linux (dbg)',
358 }), 358 }),
359 'linux_chromium_cfi_rel_ng': simple_bot({ 359 'linux_chromium_cfi_rel_ng': simple_bot({
360 'mastername': 'chromium.fyi', 360 'mastername': 'chromium.fyi',
361 'buildername': 'CFI Linux', 361 'buildername': 'CFI Linux',
362 }), 362 }),
363 'linux_chromium_ubsan_rel_ng': simple_bot({
364 'mastername': 'chromium.fyi',
365 'buildername': 'UBSanVptr Linux',
366 }),
363 'linux_chromium_ozone_compile_only_ng': simple_bot({ 367 'linux_chromium_ozone_compile_only_ng': simple_bot({
364 'mastername': 'chromium.fyi', 368 'mastername': 'chromium.fyi',
365 'buildername': 'Ozone Linux', 369 'buildername': 'Ozone Linux',
366 }), 370 }),
367 'linux_site_isolation': simple_bot({ 371 'linux_site_isolation': simple_bot({
368 'mastername': 'chromium.fyi', 372 'mastername': 'chromium.fyi',
369 'buildername': 'Site Isolation Linux', 373 'buildername': 'Site Isolation Linux',
370 }), 374 }),
371 'linux_layout_tests_slimming_paint_v2': simple_bot({ 375 'linux_layout_tests_slimming_paint_v2': simple_bot({
372 'mastername': 'chromium.fyi', 376 'mastername': 'chromium.fyi',
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 'mastername': 'client.v8.fyi', 572 'mastername': 'client.v8.fyi',
569 'buildername': 'V8 Linux GN', 573 'buildername': 'V8 Linux GN',
570 }), 574 }),
571 'v8_android_chromium_gn_dbg': simple_bot({ 575 'v8_android_chromium_gn_dbg': simple_bot({
572 'mastername': 'client.v8.fyi', 576 'mastername': 'client.v8.fyi',
573 'buildername': 'V8 Android GN (dbg)', 577 'buildername': 'V8 Android GN (dbg)',
574 }), 578 }),
575 }, 579 },
576 }, 580 },
577 }) 581 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698