From 18b3aa112348c0ee3fe89764cbb78a72e29e58d2 Mon Sep 17 00:00:00 2001 From: Arun Kuruvila Date: Fri, 24 Feb 2017 16:04:34 +0530 Subject: 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. --- mysql-test/valgrind.supp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'mysql-test/valgrind.supp') 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. # -- cgit v1.2.1