diff options
author | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-24 14:13:37 +0000 |
---|---|---|
committer | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-24 14:13:37 +0000 |
commit | 78dac21222e3d00c3b7848cfd56509c1b62d4c6b (patch) | |
tree | b1346c7f5ed4c3d01d86b069649eef761df71df5 | |
parent | 37b113b194c15d6ac6797f58be5937315b597a1b (diff) | |
download | chromium_src-78dac21222e3d00c3b7848cfd56509c1b62d4c6b.zip chromium_src-78dac21222e3d00c3b7848cfd56509c1b62d4c6b.tar.gz chromium_src-78dac21222e3d00c3b7848cfd56509c1b62d4c6b.tar.bz2 |
Ignore CryptAcquireContext* on Windows; match ".dll$" instead of ".dll*"
TBR=glider
TEST=TSan/Win should remain green
Review URL: http://codereview.chromium.org/5267002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67258 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | tools/valgrind/tsan/ignores_win32.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/valgrind/tsan/ignores_win32.txt b/tools/valgrind/tsan/ignores_win32.txt index a8991af..0d5375b 100644 --- a/tools/valgrind/tsan/ignores_win32.txt +++ b/tools/valgrind/tsan/ignores_win32.txt @@ -3,13 +3,14 @@ # We ignore security libraries for now since their instrumentation is very slow. # TODO(timurrrr): investigate whether we need to instrument them -obj:*CRYPT32.dll* -obj:*RPCRT4.dll* +obj:*CRYPT32.dll +obj:*RPCRT4.dll fun_r:*SHA256* fun_r:*BCryptGenerateSymmetricKey* +fun_r:*CryptAcquireContext* -obj:*WINHTTP.dll* -obj:*imagehlp.dll* +obj:*WINHTTP.dll +obj:*imagehlp.dll # Use less detailed instrumentation of STL fun_hist:*std::*<* |