[pypy-commit] pypy cpyext-for-merge: skip 'wishlist' test

mattip pypy.commits at gmail.com
Tue Apr 26 15:47:51 EDT 2016


Author: mattip <matti.picus at gmail.com>
Branch: cpyext-for-merge
Changeset: r83919:e73965d016f4
Date: 2016-04-26 22:46 +0300
http://bitbucket.org/pypy/pypy/changeset/e73965d016f4/

Log:	skip 'wishlist' test

diff --git a/pypy/module/cpyext/test/test_getargs.py b/pypy/module/cpyext/test/test_getargs.py
--- a/pypy/module/cpyext/test/test_getargs.py
+++ b/pypy/module/cpyext/test/test_getargs.py
@@ -122,8 +122,9 @@
             PyBuffer_Release(&buf);
             return result;
             ''')
+        assert 'foo\0bar\0baz' == pybuffer('foo\0bar\0baz')
+        skip('PyByteArrayObject not implemented yet')
         assert 'foo\0bar\0baz' == pybuffer(bytearray('foo\0bar\0baz'))
-        assert 'foo\0bar\0baz' == pybuffer('foo\0bar\0baz')
 
 
     def test_pyarg_parse_string_old_buffer(self):


More information about the pypy-commit mailing list