diff options
Diffstat (limited to 'mysql-test/valgrind.supp')
-rw-r--r-- | mysql-test/valgrind.supp | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/mysql-test/valgrind.supp b/mysql-test/valgrind.supp index 9061a71364d..6dd11df5de6 100644 --- a/mysql-test/valgrind.supp +++ b/mysql-test/valgrind.supp @@ -249,6 +249,18 @@ } # +# Warning from my_thread_init becasue mysqld dies before kill thread exists +# + +{ + my_thread_init kill thread memory loss second + Memcheck:Leak + fun:calloc + fun:my_thread_init + fun:kill_server_thread +} + +# # Leaks reported in _dl_* internal functions on Linux amd64 / glibc2.3.2. # @@ -408,6 +420,19 @@ } # +# BUG#19940: NDB sends uninitialized parts of field buffers across the wire. +# This is "works as designed"; the uninitialized part is not used at the +# other end (but Valgrind cannot see this). +# +{ + bug19940 + Memcheck:Param + socketcall.sendto(msg) + fun:send + fun:_ZN15TCP_Transporter6doSendEv + fun:_ZN19TransporterRegistry11performSendEv + fun:_ZN19TransporterRegistry14forceSendCheckEi +} # Warning when printing stack trace (to suppress some not needed warnings) # @@ -433,3 +458,13 @@ fun:ListAdd fun:_db_set_ } + +{ + dbug initialization by kill_server + Memcheck:Leak + fun:malloc + fun:DbugMalloc + fun:code_state + fun:_db_enter_ + fun:kill_server +} |