diff options
author | Arun Kuruvila <arun.kuruvila@oracle.com> | 2017-02-24 16:04:34 +0530 |
---|---|---|
committer | Arun Kuruvila <arun.kuruvila@oracle.com> | 2017-02-24 16:04:34 +0530 |
commit | 18b3aa112348c0ee3fe89764cbb78a72e29e58d2 (patch) | |
tree | 6c8b6c87263a4802ea50c5e5692ad1a3991b49e1 /mysql-test/valgrind.supp | |
parent | 7849a27cfb1f175888878704d8f6708a23714538 (diff) | |
download | mariadb-git-18b3aa112348c0ee3fe89764cbb78a72e29e58d2.tar.gz |
Bug#25608828: I_MAIN.VARIABLES-BUG21503595 FAILS
SPORADICALLY ON PB2-5.5 FOR LINUX-VALGRIND
Description: Sporadic failure of variables-bug21503595 test
on pb2-5.5 for linux-valgrind platform.
Fix: This is a issue related to libc and not related to
MySQL code. During dlclose few blocks of memory left
unfreed. This is a known issue in libc and needs to be
suppressed.
Fix: Added a valgrind suppression.
Diffstat (limited to 'mysql-test/valgrind.supp')
-rw-r--r-- | mysql-test/valgrind.supp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/mysql-test/valgrind.supp b/mysql-test/valgrind.supp index 72fcd3ef787..27204b83fd0 100644 --- a/mysql-test/valgrind.supp +++ b/mysql-test/valgrind.supp @@ -1,4 +1,4 @@ -# Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU Library General Public @@ -487,6 +487,15 @@ fun:dl_open_worker } +{ + libc pthread_exit 9 + Memcheck:Leak + fun:malloc + fun:_dl_close_worker + fun:_dl_close + fun:_dl_catch_error +} + # # This is seen internally in the system libraries on 64-bit RHAS3. # |