diff options
author | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-10 10:23:56 +0000 |
---|---|---|
committer | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-10 10:23:56 +0000 |
commit | 57bd0a3ca6c996278197abc62824153741edb42c (patch) | |
tree | 2df94333f83dab0fb8c58a61232e72eb2ad1a0cc /tools/valgrind/tsan | |
parent | 466da6a49566b2a11345d5ef2a2e288e0278e8f0 (diff) | |
download | chromium_src-57bd0a3ca6c996278197abc62824153741edb42c.zip chromium_src-57bd0a3ca6c996278197abc62824153741edb42c.tar.gz chromium_src-57bd0a3ca6c996278197abc62824153741edb42c.tar.bz2 |
Ignore all memory accesses below WebKit filesystem API to make the TSan bots green
Please note: this is a VERY wide ignore which may probably hide some unrelated
data races, so please remove this as soon as the races are fixed
TBR=jochen,adamk
TEST=TSan/UI bots go green
BUG=75589
Review URL: http://codereview.chromium.org/6659032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77620 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/valgrind/tsan')
-rw-r--r-- | tools/valgrind/tsan/ignores.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/valgrind/tsan/ignores.txt b/tools/valgrind/tsan/ignores.txt index 2c422d2..7322ed7 100644 --- a/tools/valgrind/tsan/ignores.txt +++ b/tools/valgrind/tsan/ignores.txt @@ -146,3 +146,6 @@ fun_r:gethostbyname2_r* # Strange reports below _IO_getline, every time in "Concurrent access". # Probably the reports are there since we're missing the libc internal locks fun_r:_IO_getline* + +# Many data races in WebKit filesystem API, see http://crbug.com/75589 +fun_r:*WebKit*FileSystem* |