Author: Matti Picus <matti.pi...@gmail.com>
Branch: py3.5
Changeset: r93579:a4194a67868f
Date: 2017-12-26 19:55 +0200
http://bitbucket.org/pypy/pypy/changeset/a4194a67868f/

Log:    make test fail not hang on win32

diff --git a/pypy/module/cpyext/test/test_eval.py 
b/pypy/module/cpyext/test/test_eval.py
--- a/pypy/module/cpyext/test/test_eval.py
+++ b/pypy/module/cpyext/test/test_eval.py
@@ -345,6 +345,8 @@
         assert ns['nested_flags']() == (0, 0)
 
     def test_recursive_function(self):
+        if sys.platform == 'win32':
+            assert False, 'hangs the process on win32'
         module = self.import_extension('foo', [
             ("call_recursive", "METH_NOARGS",
              """
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to