diff options
author | dkegel@google.com <dkegel@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-29 00:44:26 +0000 |
---|---|---|
committer | dkegel@google.com <dkegel@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-29 00:44:26 +0000 |
commit | 8a8dcf5d14d1cb843f9395b87a8581ab3258774e (patch) | |
tree | 62dffb32bdbb4baa6f450af9f205d010a1e54b27 /tools | |
parent | 56e13931b0600bdc39d061c90f2932385bde390e (diff) | |
download | chromium_src-8a8dcf5d14d1cb843f9395b87a8581ab3258774e.zip chromium_src-8a8dcf5d14d1cb843f9395b87a8581ab3258774e.tar.gz chromium_src-8a8dcf5d14d1cb843f9395b87a8581ab3258774e.tar.bz2 |
Loosen a couple more ui test valgrind suppressions.
Review URL: http://codereview.chromium.org/99163
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14813 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/valgrind/suppressions.txt | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/tools/valgrind/suppressions.txt b/tools/valgrind/suppressions.txt index 175587d..9ef06b1 100644 --- a/tools/valgrind/suppressions.txt +++ b/tools/valgrind/suppressions.txt @@ -165,6 +165,18 @@ fun:sqlite3VdbeExec fun:sqlite3*tep } +# SQLite intentionally leaks a little memory in findLockInfo() in sqlite3_open +# Newer versions don't do this. +# See http://www.mail-archive.com/sqlite-users@sqlite.org/msg02334.html +# and http://www.mail-archive.com/sqlite-users@sqlite.org/msg30449.html +{ + sqlite_open_leak + Memcheck:Leak + ... + fun:findLockInfo + fun:unixOpen + fun:sqlite3OsOpen +} { libevent does not provide a way to clean up unused oneshot timers at exit Memcheck:Leak @@ -333,7 +345,7 @@ # This is the -O1 case bug_6532b Memcheck:Leak - fun:_Znwj + ... fun:_ZN3IPC12ChannelProxy7Context14OnChannelErrorEv fun:_ZN3IPC7Channel11ChannelImpl28OnFileCanReadWithoutBlockingEi } @@ -379,9 +391,6 @@ bug_10738 Memcheck:Leak ... - fun:_ZN22RendererSecurityPolicy15GrantRequestURLEiRK4GURL - fun:_ZN14RenderViewHost15NavigateToEntryERK15NavigationEntryb - ... fun:_ZN20NavigationController22NavigateToPendingEntryEb fun:_ZN20NavigationController9LoadEntryEP15NavigationEntry fun:_ZN20NavigationController7LoadURLERK4GURLS2_j @@ -412,15 +421,6 @@ Memcheck:Leak fun:_Znwj fun:_ZN18TabContentsViewGtk19CreateViewForWidgetEP16RenderWidgetHost - fun:_ZN11WebContents32CreateRenderViewForRenderManagerEP14RenderViewHost -} -{ - # yet one more from http://crbug.com/10747 - bug_10747c - Memcheck:Leak - ... - fun:_ZN18TabContentsViewGtk19CreateViewForWidgetEP16RenderWidgetHost - fun:_ZN11TabContents32CreateRenderViewForRenderManagerEP14RenderViewHost } { # see http://crbug.com/10748 |