diff options
author | herb <herb@google.com> | 2015-06-30 14:23:29 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-30 14:23:29 -0700 |
commit | 19fb80ed14efbe9762d417fe183def089fa7cb6c (patch) | |
tree | 5dfe67b1e32fce31e4d244ea2d502a521bbfbbdb /tools | |
parent | dec1afcf34dfb91f3bf0552feffc46b8865fcb36 (diff) |
Revert of Skip SkSharedMutexMultiThreaded test on TSAN bot while investigating. (patchset #1 id:1 of https://codereview.chromium.org/1213033003/)
Reason for revert:
Add tsan annotations to repair tests.
Original issue's description:
> 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
>
> Committed: https://skia.googlesource.com/skia/+/37cc0b2e31e4a078b12790253d7032d36271440c
TBR=mtklein@google.com,mtklein@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=skia:3997
Review URL: https://codereview.chromium.org/1218153004
Diffstat (limited to 'tools')
-rw-r--r-- | tools/dm_flags.json | 3 | ||||
-rwxr-xr-x | tools/dm_flags.py | 5 |
2 files changed, 3 insertions, 5 deletions
diff --git a/tools/dm_flags.json b/tools/dm_flags.json index fe0b60ed81..aed4022590 100644 --- a/tools/dm_flags.json +++ b/tools/dm_flags.json @@ -946,8 +946,7 @@ "decode", "Hopstarter-Mac-Folders-Apple.ico", "--match", - "~Math", - "~SkSharedMutexMultiThreaded" + "~Math" ], "Test-Ubuntu-GCC-GCE-CPU-AVX2-x86_64-Release-Valgrind": [ "--matrix", diff --git a/tools/dm_flags.py b/tools/dm_flags.py index acf7892f48..524e1b6212 100755 --- a/tools/dm_flags.py +++ b/tools/dm_flags.py @@ -148,9 +148,8 @@ def get_args(bot): match = [] if 'Valgrind' in bot: # skia:3021 match.append('~Threaded') - if 'TSAN' in bot: - match.append('~Math') # skia:3562 - match.append('~SkSharedMutexMultiThreaded') # skia:3997 + if 'TSAN' in bot: # skia:3562 + match.append('~Math') if 'GalaxyS3' in bot: # skia:1699 match.append('~WritePixels') |