diff options
author | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-25 07:15:32 +0000 |
---|---|---|
committer | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-25 07:15:32 +0000 |
commit | 9da6ec034bedc390884c68cd5f368d9c83a3f781 (patch) | |
tree | 341f9859f3263bb764581523ecc195d1b0e15dfe /tools | |
parent | 303e8f00bec846e87a34e9a3e00f0947ae33a584 (diff) | |
download | chromium_src-9da6ec034bedc390884c68cd5f368d9c83a3f781.zip chromium_src-9da6ec034bedc390884c68cd5f368d9c83a3f781.tar.gz chromium_src-9da6ec034bedc390884c68cd5f368d9c83a3f781.tar.bz2 |
Fix ThreadSanitizer suppressions
BUG=28765
TBR=dank,willchan
TEST=TSAN bots should stop skipping all tests
Review URL: http://codereview.chromium.org/434072
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33058 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/valgrind/tsan/suppressions.txt | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/tools/valgrind/tsan/suppressions.txt b/tools/valgrind/tsan/suppressions.txt index 8c9c5b3..def64d1 100644 --- a/tools/valgrind/tsan/suppressions.txt +++ b/tools/valgrind/tsan/suppressions.txt @@ -121,6 +121,13 @@ fun:*talk_base*MessageQueue*Quit* } +{ + bug_28765 (tcmalloc) + ThreadSanitizer:Race + ... + fun:*tcmalloc*ThreadCache*DeleteCache* +} + ############################ # Data races in tests @@ -278,12 +285,3 @@ ... fun:gethostbyname2_r* } - -############################ -# Races in TCMalloc (probably benign) -{ - TCMalloc1 - ThreadSanitizer:Race - ... - tcmalloc::ThreadCache::DeleteCache -} |