Skip to content

Commit 18b3aa1

Browse files
author
Arun Kuruvila
committed
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.
1 parent 7849a27 commit 18b3aa1

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

mysql-test/valgrind.supp

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved.
1+
# Copyright (c) 2005, 2017, Oracle and/or its affiliates. All rights reserved.
22
#
33
# This program is free software; you can redistribute it and/or
44
# modify it under the terms of the GNU Library General Public
@@ -487,6 +487,15 @@
487487
fun:dl_open_worker
488488
}
489489

490+
{
491+
libc pthread_exit 9
492+
Memcheck:Leak
493+
fun:malloc
494+
fun:_dl_close_worker
495+
fun:_dl_close
496+
fun:_dl_catch_error
497+
}
498+
490499
#
491500
# This is seen internally in the system libraries on 64-bit RHAS3.
492501
#

0 commit comments

Comments
 (0)