Skip to content

Commit 7a2a6d5

Browse files
BUG#25549156 - THREAD_POOL VALGRIND FAILURE ON PB 5.7.
Valgrind failures relating to thread pool test suite is seen on PB2. The failures are a result of OpenSSL library. The fix is to add valgrind suppressions. This bug is a backport of the fix for bug#23473989.
1 parent 19d2f95 commit 7a2a6d5

File tree

1 file changed

+27
-1
lines changed

1 file changed

+27
-1
lines changed

mysql-test/valgrind.supp

+27-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2005, 2016, 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
@@ -1181,3 +1181,29 @@
11811181
obj:*
11821182
}
11831183

1184+
{
1185+
OpenSSL still reachable.
1186+
Memcheck:Leak
1187+
match-leak-kinds: reachable
1188+
fun:malloc
1189+
fun:CRYPTO_malloc
1190+
...
1191+
fun:ERR_peek_error
1192+
fun:vio_ssl_read
1193+
...
1194+
}
1195+
1196+
{
1197+
OpenSSL still reachable.
1198+
Memcheck:Leak
1199+
match-leak-kinds: reachable
1200+
fun:malloc
1201+
fun:CRYPTO_malloc
1202+
...
1203+
fun:ERR_peek_error
1204+
...
1205+
fun:sslaccept
1206+
...
1207+
fun:server_mpvio_read_packet
1208+
...
1209+
}

0 commit comments

Comments
 (0)