diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2009-08-14 01:12:12 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2009-08-14 01:12:12 +0400 |
commit | 57c199d8d14b27c9b4f3b58b3e504c1d4adee1a6 (patch) | |
tree | d665d402d4d3b8ac0e7059ad98e9b1147d8c48fe /mysql-test/valgrind.supp | |
parent | 915a624cbcb58a10a2cfb2e2e4fd5029191fa86a (diff) | |
parent | fef409cb9eb6eb4f82bd1a8beba28545f71faf2e (diff) | |
download | mariadb-git-57c199d8d14b27c9b4f3b58b3e504c1d4adee1a6.tar.gz |
Merge maria-5.1 -> maria-5.1-table-elimination
Diffstat (limited to 'mysql-test/valgrind.supp')
-rw-r--r-- | mysql-test/valgrind.supp | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/mysql-test/valgrind.supp b/mysql-test/valgrind.supp index 4a6c8f25df8..95262ae7c27 100644 --- a/mysql-test/valgrind.supp +++ b/mysql-test/valgrind.supp @@ -703,3 +703,73 @@ fun:malloc fun:inet_ntoa } + + +# +# Some problem inside glibc on Ubuntu 9.04, x86 (but not amd64): +# +# ==5985== 19 bytes in 1 blocks are still reachable in loss record 1 of 6 +# ==5985== at 0x7AF3FDE: malloc (vg_replace_malloc.c:207) +# ... 11,12, or 13 functions w/o symbols ... +# ==5985== by 0x8717185: nptl_pthread_exit_hack_handler (my_thr_init.c:55) +# +# Since valgrind 3.3.0 doesn't support '...' multi-function pattern, using +# multiple suppressions: +# +{ + Mem loss inside nptl_pthread_exit_hack_handler + Memcheck:Leak + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:nptl_pthread_exit_hack_handler +} + +{ + Mem loss inside nptl_pthread_exit_hack_handler + Memcheck:Leak + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:nptl_pthread_exit_hack_handler +} + +{ + Mem loss inside nptl_pthread_exit_hack_handler + Memcheck:Leak + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:* + fun:nptl_pthread_exit_hack_handler +} + |