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

Unified Diff: tools/mb/mb.py

Issue 2938383004: Make the linux_chromium_cfi_rel_ng trybot more useful. (Closed)
Patch Set: Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « testing/test_env.py ('k') | tools/mb/mb_config.pyl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/mb/mb.py
diff --git a/tools/mb/mb.py b/tools/mb/mb.py
index 46bf07b7df6cf322bfe6046ae9b15a48618ea93f..239720141cba2fd52ad1d5129ac54f6806f0c568 100755
--- a/tools/mb/mb.py
+++ b/tools/mb/mb.py
@@ -1062,6 +1062,7 @@ class MetaBuildWrapper(object):
asan = 'is_asan=true' in vals['gn_args']
msan = 'is_msan=true' in vals['gn_args']
tsan = 'is_tsan=true' in vals['gn_args']
+ cfi_diag = 'use_cfi_diag=true' in vals['gn_args']
test_type = isolate_map[target]['type']
@@ -1096,6 +1097,7 @@ class MetaBuildWrapper(object):
'--asan=%d' % asan,
'--msan=%d' % msan,
'--tsan=%d' % tsan,
+ '--cfi-diag=%d' % cfi_diag,
]
elif test_type in ('windowed_test_launcher', 'console_test_launcher'):
extra_files = [
@@ -1109,6 +1111,7 @@ class MetaBuildWrapper(object):
'--asan=%d' % asan,
'--msan=%d' % msan,
'--tsan=%d' % tsan,
+ '--cfi-diag=%d' % cfi_diag,
]
elif test_type == 'script':
extra_files = [
« no previous file with comments | « testing/test_env.py ('k') | tools/mb/mb_config.pyl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698