Author: Tobias Oberstein <[email protected]>
Branch:
Changeset: r68213:dc08f917cd4f
Date: 2013-11-18 14:43 +0100
http://bitbucket.org/pypy/pypy/changeset/dc08f917cd4f/
Log: skip test that assume glibc specific, non-standard-C behavior
diff --git a/pypy/module/_cffi_backend/test/_backend_test_c.py
b/pypy/module/_cffi_backend/test/_backend_test_c.py
--- a/pypy/module/_cffi_backend/test/_backend_test_c.py
+++ b/pypy/module/_cffi_backend/test/_backend_test_c.py
@@ -1086,7 +1086,9 @@
assert strlenaddr == cast(BVoidP, strlen)
def test_read_variable():
- if sys.platform == 'win32' or sys.platform == 'darwin':
+ ## FIXME: this test assumes glibc specific behavior, it's not compliant
with C standard
+ ## https://bugs.pypy.org/issue1643
+ if sys.platform == 'win32' or sys.platform == 'darwin' or
sys.platform.startswith('freebsd'):
py.test.skip("untested")
BVoidP = new_pointer_type(new_void_type())
ll = find_and_load_library('c')
@@ -1094,7 +1096,9 @@
assert stderr == cast(BVoidP, _testfunc(8))
def test_read_variable_as_unknown_length_array():
- if sys.platform == 'win32' or sys.platform == 'darwin':
+ ## FIXME: this test assumes glibc specific behavior, it's not compliant
with C standard
+ ## https://bugs.pypy.org/issue1643
+ if sys.platform == 'win32' or sys.platform == 'darwin' or
sys.platform.startswith('freebsd'):
py.test.skip("untested")
BCharP = new_pointer_type(new_primitive_type("char"))
BArray = new_array_type(BCharP, None)
@@ -1104,7 +1108,9 @@
# ^^ and not 'char[]', which is basically not allowed and would crash
def test_write_variable():
- if sys.platform == 'win32' or sys.platform == 'darwin':
+ ## FIXME: this test assumes glibc specific behavior, it's not compliant
with C standard
+ ## https://bugs.pypy.org/issue1643
+ if sys.platform == 'win32' or sys.platform == 'darwin' or
sys.platform.startswith('freebsd'):
py.test.skip("untested")
BVoidP = new_pointer_type(new_void_type())
ll = find_and_load_library('c')
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit