diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2012-03-04 20:16:39 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2012-03-04 20:16:39 (GMT) |
commit | 942f2dd3099f15ce01bccec341258f031576d35b (patch) | |
tree | 3873ab1643524cf7adb943d230a88f4a0191a9fd /Misc | |
parent | f7dabd849fdac650317004092894e61e1d7e5046 (diff) | |
download | cpython-942f2dd3099f15ce01bccec341258f031576d35b.zip cpython-942f2dd3099f15ce01bccec341258f031576d35b.tar.gz cpython-942f2dd3099f15ce01bccec341258f031576d35b.tar.bz2 |
Issue #14171: Add valgrind suppressions for OpenSSL issue.
Patch by Zooko O'Whielacronx.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/valgrind-python.supp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Misc/valgrind-python.supp b/Misc/valgrind-python.supp index 20dbf1e..95e1b9e 100644 --- a/Misc/valgrind-python.supp +++ b/Misc/valgrind-python.supp @@ -310,6 +310,38 @@ ### fun:MD5_Update ###} +# Fedora's package "openssl-1.0.1-0.1.beta2.fc17.x86_64" on x86_64 +# See http://bugs.python.org/issue14171 +{ + openssl 1.0.1 prng 1 + Memcheck:Cond + fun:bcmp + fun:fips_get_entropy + fun:FIPS_drbg_instantiate + fun:RAND_init_fips + fun:OPENSSL_init_library + fun:SSL_library_init + fun:init_hashlib +} + +{ + openssl 1.0.1 prng 2 + Memcheck:Cond + fun:fips_get_entropy + fun:FIPS_drbg_instantiate + fun:RAND_init_fips + fun:OPENSSL_init_library + fun:SSL_library_init + fun:init_hashlib +} + +{ + openssl 1.0.1 prng 3 + Memcheck:Value8 + fun:_x86_64_AES_encrypt_compact + fun:AES_encrypt +} + # # All of these problems come from using test_socket_ssl # |