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

Unified Diff: tools/dm_flags.py

Issue 1213033003: Skip SkSharedMutexMultiThreaded test on TSAN bot while investigating. (Closed) Base URL: https://skia.googlesource.com/skia@master
Patch Set: Created 5 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 | « tools/dm_flags.json ('k') | 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 524e1b6212327ba5e5b15626eac6f2088851703e..acf7892f48190f469c98a09e334610d0f6234d5e 100755
--- a/tools/dm_flags.py
+++ b/tools/dm_flags.py
@@ -148,8 +148,9 @@ def get_args(bot):
match = []
if 'Valgrind' in bot: # skia:3021
match.append('~Threaded')
- if 'TSAN' in bot: # skia:3562
- match.append('~Math')
+ if 'TSAN' in bot:
+ match.append('~Math') # skia:3562
+ match.append('~SkSharedMutexMultiThreaded') # skia:3997
if 'GalaxyS3' in bot: # skia:1699
match.append('~WritePixels')
« no previous file with comments | « tools/dm_flags.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698