summaryrefslogtreecommitdiff
path: root/mysql-test/valgrind.supp
diff options
context:
space:
mode:
authorMonty <monty@mariadb.org>2017-10-22 20:06:01 +0300
committerMonty <monty@mariadb.org>2017-10-22 20:23:09 +0300
commita3b4f575b966ff91035fd8104eadd4df366574c1 (patch)
treeca324de18392b7106b8590c4303633482b0e4058 /mysql-test/valgrind.supp
parent7204f66c6a008c02c923b0f431372f9ea75d6f06 (diff)
downloadmariadb-git-a3b4f575b966ff91035fd8104eadd4df366574c1.tar.gz
Reset table->record[1] early for sequences to fix comparision of innodb row
Added also suppression of openssl warnings from valgrind
Diffstat (limited to 'mysql-test/valgrind.supp')
-rw-r--r--mysql-test/valgrind.supp31
1 files changed, 31 insertions, 0 deletions
diff --git a/mysql-test/valgrind.supp b/mysql-test/valgrind.supp
index 74c755aa669..2b54554923c 100644
--- a/mysql-test/valgrind.supp
+++ b/mysql-test/valgrind.supp
@@ -1737,3 +1737,34 @@
...
}
+#
+# OpenSSL 1.0.1k problems
+#
+
+{
+ OPENSSL 1.0.1k crypto leak
+ Memcheck:Leak
+ match-leak-kinds: reachable
+ fun:malloc
+ fun:CRYPTO_malloc
+ fun:ENGINE_ADD
+}
+{
+ OPENSSL 1.0.1k crypto leak
+ Memcheck:Leak
+ match-leak-kinds: reachable
+ fun:malloc
+ fun:CRYPTO_malloc
+ fun:ENGINE_new
+}
+
+{
+ OPENSSL 1.0.1k crypto leak2
+ Memcheck:Leak
+ match-leak-kinds: reachable
+ fun:malloc
+ fun:CRYPTO_malloc
+ fun:sk_new
+ obj:/lib64/libcrypto.so*
+ fun:ENGINE_ADD
+}