Author: Armin Rigo <ar...@tunes.org>
Branch: openssl-1.1
Changeset: r87987:f119305a5dc5
Date: 2016-10-29 20:00 +0200
http://bitbucket.org/pypy/pypy/changeset/f119305a5dc5/

Log:    Fix test

diff --git a/rpython/translator/c/test/test_newgc.py 
b/rpython/translator/c/test/test_newgc.py
--- a/rpython/translator/c/test/test_newgc.py
+++ b/rpython/translator/c/test/test_newgc.py
@@ -1582,7 +1582,8 @@
                 rgc.add_memory_pressure(ropenssl.HASH_MALLOC_SIZE + 64)
 
             def __del__(self):
-                ropenssl.EVP_MD_CTX_cleanup(self.ctx)
+                #ropenssl.EVP_MD_CTX_cleanup(self.ctx) -- disappeared in
+                # the refactoring to openssl 1.1, and not important here
                 lltype.free(self.ctx, flavor='raw')
         #A() --- can't call it here?? get glibc crashes on tannit64
         def f():
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to