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

Unified Diff: tools/buildbot_spec.py

Issue 1859413003: Add XSAN suppression files to infrabots.isolate. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Fix buildbot_spec.py for builders without extra-config. Created 4 years, 8 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 | « infra/bots/infrabots.isolate ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/buildbot_spec.py
diff --git a/tools/buildbot_spec.py b/tools/buildbot_spec.py
index ae3d4eff7fdd5f3961d0edfa8ea7e804ff88e847..edc05f0b0344a1f6e8f3df57c08cc85b1f2bc428 100755
--- a/tools/buildbot_spec.py
+++ b/tools/buildbot_spec.py
@@ -199,6 +199,9 @@ def build_targets_from_builder_dict(builder_dict, do_test_steps, do_perf_steps):
return ['iOSShell']
if builder_dict.get('extra_config') == 'Appurify':
return ['VisualBenchTest_APK']
+ if 'SAN' in builder_dict.get('extra_config', ''):
+ # 'most' does not compile under MSAN.
+ return ['dm', 'nanobench']
t = []
if do_test_steps:
t.append('dm')
« no previous file with comments | « infra/bots/infrabots.isolate ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698