[pypy-commit] pypy cpyext-faster-arg-passing: can't pass with -A

cfbolz pypy.commits at gmail.com
Tue Jan 30 15:14:06 EST 2018


Author: Carl Friedrich Bolz-Tereick <cfbolz at gmx.de>
Branch: cpyext-faster-arg-passing
Changeset: r93725:f997dff28b7f
Date: 2018-01-30 21:13 +0100
http://bitbucket.org/pypy/pypy/changeset/f997dff28b7f/

Log:	can't pass with -A

diff --git a/pypy/module/cpyext/test/test_typeobject.py b/pypy/module/cpyext/test/test_typeobject.py
--- a/pypy/module/cpyext/test/test_typeobject.py
+++ b/pypy/module/cpyext/test/test_typeobject.py
@@ -171,6 +171,8 @@
         # test that instances of classes that are defined in C become an
         # instance of W_BaseCPyObject and thus can be converted faster back to
         # their pyobj, because they store a pointer to it directly.
+        if self.runappdirect:
+            skip("can't run with -A")
         module = self.import_module(name='foo')
         obj = module.fooType()
         assert self._check_uses_shortcut(obj)


More information about the pypy-commit mailing list