diff options
author | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-20 12:03:43 +0000 |
---|---|---|
committer | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-20 12:03:43 +0000 |
commit | b1eb78f779c19e0633dd8891865306a693b76bf7 (patch) | |
tree | 35113e25d7c35aea6d8d279f06bd25d214019bf0 /tools | |
parent | 92c5c67fc636162d80573b06a32a52cc9d023554 (diff) | |
download | chromium_src-b1eb78f779c19e0633dd8891865306a693b76bf7.zip chromium_src-b1eb78f779c19e0633dd8891865306a693b76bf7.tar.gz chromium_src-b1eb78f779c19e0633dd8891865306a693b76bf7.tar.bz2 |
Widen a suppression to cover two related bugs; add a fun_r ignore rule for sqlite cache
BUG=84094,84467
TBR=glider
Review URL: http://codereview.chromium.org/7189059
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@89656 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/valgrind/tsan/ignores.txt | 3 | ||||
-rw-r--r-- | tools/valgrind/tsan/suppressions.txt | 11 |
2 files changed, 4 insertions, 10 deletions
diff --git a/tools/valgrind/tsan/ignores.txt b/tools/valgrind/tsan/ignores.txt index 39eab36..2c5db19 100644 --- a/tools/valgrind/tsan/ignores.txt +++ b/tools/valgrind/tsan/ignores.txt @@ -151,3 +151,6 @@ fun:g_slice_alloc # A benign race in glibc on "random_time_bits". fun:__gen_tempname +# The sqlite cache is racing against a few different stacktraces, +# so let's ignore it recursively. See http://crbug.com/84094 +fun_r:pcache1Fetch diff --git a/tools/valgrind/tsan/suppressions.txt b/tools/valgrind/tsan/suppressions.txt index 62faee4..8988526 100644 --- a/tools/valgrind/tsan/suppressions.txt +++ b/tools/valgrind/tsan/suppressions.txt @@ -245,7 +245,6 @@ bug_84094_a (Could be benign. See bug for details) ThreadSanitizer:Race ... - fun:pcache1AllocPage fun:pcache1Fetch fun:sqlite3PcacheFetch } @@ -267,21 +266,13 @@ fun:sqlite3PcacheCleanAll } - { - bug_84467_a (Could be benign. See bug for details) + bug_84467 (Could be benign. See bug for details) ThreadSanitizer:Race fun:unixTempFileDir } { - bug_84467_b (Could be benign. See bug for details) - ThreadSanitizer:Race - fun:pcache1Fetch - fun:sqlite3PcacheFetch -} - -{ bug_84726_a ThreadSanitizer:Race fun:qsort_r |