diff options
author | unknown <df@kahlann.erinye.com> | 2006-12-01 10:39:48 +0100 |
---|---|---|
committer | unknown <df@kahlann.erinye.com> | 2006-12-01 10:39:48 +0100 |
commit | cf245c8f3a5c285af6e53a0035d05262ea5fbe31 (patch) | |
tree | 64ea9b0e817c69d36e0263d377d1d828ed553be9 /mysql-test/valgrind.supp.orig | |
parent | 5176be8db85e2fbc3e33a35bb6f02905fdf3ede9 (diff) | |
parent | b6004e6295717c3b616b58416544557bd858afca (diff) | |
download | mariadb-git-cf245c8f3a5c285af6e53a0035d05262ea5fbe31.tar.gz |
Merge dfischer@bk-internal.mysql.com:/home/bk/mysql-5.1
into kahlann.erinye.com:/home/df/mysql/build/mysql-5.1-build
client/mysqltest.c:
Auto merged
mysql-test/mysql-test-run.pl:
Auto merged
sql/field.cc:
Auto merged
sql/item.cc:
Auto merged
sql/item_sum.cc:
Auto merged
sql/opt_range.cc:
Auto merged
sql/sql_base.cc:
Auto merged
sql/table.cc:
Auto merged
Diffstat (limited to 'mysql-test/valgrind.supp.orig')
-rw-r--r-- | mysql-test/valgrind.supp.orig | 189 |
1 files changed, 0 insertions, 189 deletions
diff --git a/mysql-test/valgrind.supp.orig b/mysql-test/valgrind.supp.orig deleted file mode 100644 index 1a08abcf953..00000000000 --- a/mysql-test/valgrind.supp.orig +++ /dev/null @@ -1,189 +0,0 @@ -# -# Suppress some common (not fatal) errors in system libraries found by valgrind -# - -# -# Pthread doesn't free all thread specific memory before program exists -# -{ - pthread allocate_tls memory loss - Memcheck:Leak - fun:calloc - fun:_dl_allocate_tls - fun:allocate_stack - fun:pthread_create@@GLIBC_2.1 -} - -{ - pthread allocate_dtv memory loss - Memcheck:Leak - fun:calloc - fun:allocate_dtv - fun:_dl_allocate_tls_storage - fun:__GI__dl_allocate_tls - fun:pthread_create -} - -{ - pthread allocate_dtv memory loss second - Memcheck:Leak - fun:calloc - fun:allocate_dtv - fun:_dl_allocate_tls - fun:pthread_create* -} - -{ - pthread allocate_dtv memory loss second - Memcheck:Leak - fun:calloc - fun:allocate_dtv - fun:_dl_allocate_tls - fun:pthread_create* -} - -{ - pthread memalign memory loss - Memcheck:Leak - fun:memalign - fun:_dl_allocate_tls_storage - fun:__GI__dl_allocate_tls - fun:pthread_create -} - -{ - pthread pthread_key_create - Memcheck:Leak - fun:malloc - fun:* - fun:* - fun:pthread_key_create - fun:my_thread_global_init -} - -{ - pthread strstr uninit - Memcheck:Cond - fun:strstr - obj:/lib/tls/libpthread.so.* - obj:/lib/tls/libpthread.so.* - fun:call_init - fun:_dl_init - obj:/lib/ld-*.so -} - -{ - pthread strstr uninit - Memcheck:Cond - fun:strstr - obj:/lib/tls/libpthread.so.* - obj:/lib/tls/libpthread.so.* - fun:call_init - fun:_dl_init - obj:/lib/ld-*.so -} - -{ - pthread errno - Memcheck:Leak - fun:calloc - fun:_dlerror_run - fun:dlsym - fun:__errno_location -} - - -# -# Warnings in libz becasue it works with aligned memory(?) -# - -{ - libz tr_flush_block - Memcheck:Cond - fun:_tr_flush_block - fun:deflate_slow - fun:deflate - fun:do_flush - fun:gzclose -} - -{ - libz tr_flush_block2 - Memcheck:Cond - fun:_tr_flush_block - fun:deflate_slow - fun:deflate - fun:compress2 -} - -{ - libz longest_match - Memcheck:Cond - fun:longest_match - fun:deflate_slow - fun:deflate - fun:do_flush -} - -{ - libz longest_match2 - Memcheck:Cond - fun:longest_match - fun:deflate_slow - fun:deflate - fun:compress2 -} - -{ - libz deflate - Memcheck:Cond - obj:*/libz.so.* - obj:*/libz.so.* - fun:deflate - fun:compress2 -} - -{ - libz deflate2 - Memcheck:Cond - obj:*/libz.so.* - obj:*/libz.so.* - fun:deflate - obj:*/libz.so.* - fun:gzflush -} - -{ - libz deflate3 - Memcheck:Cond - obj:*/libz.so.* - obj:*/libz.so.* - fun:deflate - fun:do_flush -} - -# -# 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 -} - -# -# Warning when printing stack trace (to suppress some not needed warnings) -# - -{ - vprintf on stacktrace - Memcheck:Cond - fun:vfprintf - fun:uffered_vfprintf - fun:vfprintf - fun:fprintf - fun:print_stacktrace -} |