From 9068747c5591866480bd0888e571cc548d6be546 Mon Sep 17 00:00:00 2001 From: "timurrrr@chromium.org" Date: Fri, 9 Oct 2009 18:15:26 +0000 Subject: Suppress two data races in Chromium and a couple of races in libc BUG=24419,24307 TBR=dank Review URL: http://codereview.chromium.org/267038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28566 0039d316-1c4b-4281-b951-d872f2087c98 --- tools/valgrind/tsan/suppressions.txt | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) (limited to 'tools') diff --git a/tools/valgrind/tsan/suppressions.txt b/tools/valgrind/tsan/suppressions.txt index 53ba12b..977c781 100644 --- a/tools/valgrind/tsan/suppressions.txt +++ b/tools/valgrind/tsan/suppressions.txt @@ -61,6 +61,18 @@ fun:*logging*SetMinLogLevel* } +{ + bug_24307 + ThreadSanitizer:Race + fun:*RefCounted*disk_cache*File* +} + +{ + bug_24419 + ThreadSanitizer:Race + fun:*BrowserProcessImpl*nspector*iles* +} + ############################ # Data races in tests @@ -146,3 +158,23 @@ fun:sqlite3MutexAlloc } +############################ +# Benign races in libc +{ + Benign races in __lll_*lock_*_private + ThreadSanitizer:Race + fun:__lll_*lock_*_private +} + +{ + fun:__tz* + ThreadSanitizer:Race + fun:__tz* +} + +{ + fun:tzset* + ThreadSanitizer:Race + ... + fun:tzset* +} -- cgit v1.1