Author: matti
Branch: windows
Changeset: r1287:a7b90c4eab76
Date: 2013-07-18 22:48 +0300
http://bitbucket.org/cffi/cffi/changeset/a7b90c4eab76/
Log: two tests fixed, two still crashing (test_callback_returning*struct)
diff --git a/c/test_c.py b/c/test_c.py
--- a/c/test_c.py
+++ b/c/test_c.py
@@ -977,9 +977,6 @@
py.test.raises(TypeError, f, x[0])
def test_call_function_21():
- import os
- if os.name == 'nt':
- py.test.skip('crashes the interpreter')
BInt = new_primitive_type("int")
BStruct = new_struct_type("struct foo")
complete_struct_or_union(BStruct, [('a', BInt, -1),
@@ -999,9 +996,6 @@
assert res == sum(lst)
def test_call_function_22():
- import os
- if os.name == 'nt':
- py.test.skip('crashes the interpreter')
BInt = new_primitive_type("int")
BArray10 = new_array_type(new_pointer_type(BInt), 10)
BStruct = new_struct_type("struct foo")
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit