[pypy-commit] pypy buffer-interface2: skip test that needs bf_getbuffer wrapper

mattip pypy.commits at gmail.com
Sun Oct 16 10:39:15 EDT 2016


Author: Matti Picus <matti.picus at gmail.com>
Branch: buffer-interface2
Changeset: r87831:29eca763b7ed
Date: 2016-10-16 17:31 +0300
http://bitbucket.org/pypy/pypy/changeset/29eca763b7ed/

Log:	skip test that needs bf_getbuffer wrapper

diff --git a/pypy/module/cpyext/test/test_memoryobject.py b/pypy/module/cpyext/test/test_memoryobject.py
--- a/pypy/module/cpyext/test/test_memoryobject.py
+++ b/pypy/module/cpyext/test/test_memoryobject.py
@@ -8,6 +8,7 @@
 only_pypy ="config.option.runappdirect and '__pypy__' not in sys.builtin_module_names" 
 
 class TestMemoryViewObject(BaseApiTest):
+    skip('needs c_bf_getbuffer wrapper from slotdefs')
     def test_fromobject(self, space, api):
         w_hello = space.newbytes("hello")
         assert api.PyObject_CheckBuffer(w_hello)


More information about the pypy-commit mailing list