Author: Antonio Cuni <[email protected]>
Branch: py3k
Changeset: r54549:15d867fe89e9
Date: 2012-04-19 18:12 +0200
http://bitbucket.org/pypy/pypy/changeset/15d867fe89e9/
Log: py3k_skip for now the tests which fails because they need to handle
unicode and longs now
diff --git a/pypy/module/_ffi/test/test__ffi.py
b/pypy/module/_ffi/test/test__ffi.py
--- a/pypy/module/_ffi/test/test__ffi.py
+++ b/pypy/module/_ffi/test/test__ffi.py
@@ -121,6 +121,7 @@
return x+y;
}
"""
+ py3k_skip('missing support for longs')
import sys
from _ffi import CDLL, types
libfoo = CDLL(self.libfoo_name)
@@ -202,6 +203,7 @@
return len;
}
"""
+ py3k_skip('missing support for unicode')
from _ffi import CDLL, types
import _rawffi
libfoo = CDLL(self.libfoo_name)
@@ -252,6 +254,7 @@
return s;
}
"""
+ py3k_skip('missing support for unicode')
from _ffi import CDLL, types
import _rawffi
libfoo = CDLL(self.libfoo_name)
@@ -323,6 +326,7 @@
return x+y;
}
"""
+ py3k_skip('missing support for longs')
import sys
from _ffi import CDLL, types
libfoo = CDLL(self.libfoo_name)
@@ -449,6 +453,7 @@
return x+y;
}
"""
+ py3k_skip('missing support for ulonglong')
from _ffi import CDLL, types
maxint64 = 9223372036854775807 # maxint64+1 does not fit into a
# longlong, but it does into a
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit