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

Unified Diff: tools/dm_flags.py

Issue 1405223006: Don't run nvpr on TSAN bot (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: tabs to spaces Created 5 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dm_flags.py
diff --git a/tools/dm_flags.py b/tools/dm_flags.py
index 1e8312d2897ed944f42cfddbcce723365683b4b3..d62f764f94998d79b5fad73c9b3c85b993e38729 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -39,11 +39,15 @@ def get_args(bot):
configs.append('sp-8888')
configs.extend(['remote-8888', 'remote_cache-8888'])
- if 'TegraK1' in bot or 'GTX550Ti' in bot or 'GTX660' in bot or 'GT610' in bot:
- if 'Android' in bot:
- configs.append('nvprmsaa4')
- else:
- configs.append('nvprmsaa16')
+ if '-TSAN' not in bot:
+ if ('TegraK1' in bot or
+ 'GTX550Ti' in bot or
+ 'GTX660' in bot or
+ 'GT610' in bot):
+ if 'Android' in bot:
+ configs.append('nvprmsaa4')
+ else:
+ configs.append('nvprmsaa16')
# The S4 crashes and the NP produces a long error stream when we run with
# MSAA. The Tegra2 and Tegra3 just don't support it.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698