From 37cc0b2e31e4a078b12790253d7032d36271440c Mon Sep 17 00:00:00 2001 From: mtklein Date: Tue, 30 Jun 2015 10:51:50 -0700 Subject: Skip SkSharedMutexMultiThreaded test on TSAN bot while investigating. The ~ means "don't run this". This keeps all the other bots running the code, skipping it only on the whiny TSAN bot. BUG=skia:3997 Review URL: https://codereview.chromium.org/1213033003 --- tools/dm_flags.json | 3 ++- tools/dm_flags.py | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'tools') diff --git a/tools/dm_flags.json b/tools/dm_flags.json index aed4022590..fe0b60ed81 100644 --- a/tools/dm_flags.json +++ b/tools/dm_flags.json @@ -946,7 +946,8 @@ "decode", "Hopstarter-Mac-Folders-Apple.ico", "--match", - "~Math" + "~Math", + "~SkSharedMutexMultiThreaded" ], "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Valgrind": [ "--matrix", diff --git a/tools/dm_flags.py b/tools/dm_flags.py index 524e1b6212..acf7892f48 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') -- cgit v1.2.3