1 ============================= test session starts ==============================
2 platform sunos5 -- Python $(PYTHON_VERSION).X -- $(PYTHON)
3 cachedir: .pytest_cache
5 configfile: pyproject.toml
6 collecting ... collected 2053 items
8 src/c/test_c.py::test_load_library PASSED
9 src/c/test_c.py::test_all_rtld_symbols PASSED
10 src/c/test_c.py::test_new_primitive_type PASSED
11 src/c/test_c.py::test_inspect_primitive_type PASSED
12 src/c/test_c.py::test_cast_to_signed_char PASSED
13 src/c/test_c.py::test_sizeof_type PASSED
14 src/c/test_c.py::test_integer_types PASSED
15 src/c/test_c.py::test_no_float_on_int_types PASSED
16 src/c/test_c.py::test_float_types PASSED
17 src/c/test_c.py::test_complex_types PASSED
18 src/c/test_c.py::test_character_type PASSED
19 src/c/test_c.py::test_pointer_type PASSED
20 src/c/test_c.py::test_inspect_pointer_type PASSED
21 src/c/test_c.py::test_pointer_to_int PASSED
22 src/c/test_c.py::test_pointer_bool PASSED
23 src/c/test_c.py::test_pointer_to_pointer PASSED
24 src/c/test_c.py::test_reading_pointer_to_int PASSED
25 src/c/test_c.py::test_reading_pointer_to_float PASSED
26 src/c/test_c.py::test_cast_float_to_int PASSED
27 src/c/test_c.py::test_newp_integer_types PASSED
28 src/c/test_c.py::test_reading_pointer_to_char PASSED
29 src/c/test_c.py::test_reading_pointer_to_pointer PASSED
30 src/c/test_c.py::test_load_standard_library PASSED
31 src/c/test_c.py::test_no_len_on_nonarray PASSED
32 src/c/test_c.py::test_cmp_none PASSED
33 src/c/test_c.py::test_invalid_indexing PASSED
34 src/c/test_c.py::test_default_str PASSED
35 src/c/test_c.py::test_default_unicode PASSED
36 src/c/test_c.py::test_cast_from_cdataint PASSED
37 src/c/test_c.py::test_void_type PASSED
38 src/c/test_c.py::test_array_type PASSED
39 src/c/test_c.py::test_inspect_array_type PASSED
40 src/c/test_c.py::test_array_instance PASSED
41 src/c/test_c.py::test_array_of_unknown_length_instance PASSED
42 src/c/test_c.py::test_array_of_unknown_length_instance_with_initializer PASSED
43 src/c/test_c.py::test_array_initializer PASSED
44 src/c/test_c.py::test_array_add PASSED
45 src/c/test_c.py::test_array_sub PASSED
46 src/c/test_c.py::test_ptr_sub_unaligned PASSED
47 src/c/test_c.py::test_cast_primitive_from_cdata PASSED
48 src/c/test_c.py::test_new_primitive_from_cdata PASSED
49 src/c/test_c.py::test_cast_between_pointers PASSED
50 src/c/test_c.py::test_alignof PASSED
51 src/c/test_c.py::test_new_struct_type PASSED
52 src/c/test_c.py::test_new_union_type PASSED
53 src/c/test_c.py::test_complete_struct PASSED
54 src/c/test_c.py::test_complete_union PASSED
55 src/c/test_c.py::test_struct_instance PASSED
56 src/c/test_c.py::test_union_instance PASSED
57 src/c/test_c.py::test_struct_pointer PASSED
58 src/c/test_c.py::test_struct_init_list PASSED
59 src/c/test_c.py::test_array_in_struct PASSED
60 src/c/test_c.py::test_offsetof PASSED
61 src/c/test_c.py::test_function_type PASSED
62 src/c/test_c.py::test_inspect_function_type PASSED
63 src/c/test_c.py::test_function_type_taking_struct PASSED
64 src/c/test_c.py::test_function_void_result PASSED
65 src/c/test_c.py::test_function_void_arg PASSED
66 src/c/test_c.py::test_call_function_0 PASSED
67 src/c/test_c.py::test_call_function_0_pretend_bool_result PASSED
68 src/c/test_c.py::test_call_function_1 PASSED
69 src/c/test_c.py::test_call_function_2 PASSED
70 src/c/test_c.py::test_call_function_3 PASSED
71 src/c/test_c.py::test_call_function_4 PASSED
72 src/c/test_c.py::test_call_function_5 PASSED
73 src/c/test_c.py::test_call_function_6 PASSED
74 src/c/test_c.py::test_call_function_7 PASSED
75 src/c/test_c.py::test_call_function_20 PASSED
76 src/c/test_c.py::test_call_function_21 PASSED
77 src/c/test_c.py::test_call_function_22 PASSED
78 src/c/test_c.py::test_call_function_23 PASSED
79 src/c/test_c.py::test_call_function_23_bis PASSED
80 src/c/test_c.py::test_call_function_23_bool_array PASSED
81 src/c/test_c.py::test_cannot_pass_struct_with_array_of_length_0 PASSED
82 src/c/test_c.py::test_call_function_9 PASSED
83 src/c/test_c.py::test_call_function_24 PASSED
84 src/c/test_c.py::test_call_function_25 PASSED
85 src/c/test_c.py::test_cannot_call_with_a_autocompleted_struct PASSED
86 src/c/test_c.py::test_new_charp PASSED
87 src/c/test_c.py::test_load_and_call_function PASSED
88 src/c/test_c.py::test_read_variable SKIPPED (untested)
89 src/c/test_c.py::test_read_variable_as_unknown_length_array SKIPPED
90 src/c/test_c.py::test_write_variable SKIPPED (untested)
91 src/c/test_c.py::test_callback PASSED
92 src/c/test_c.py::test_callback_exception PASSED
93 src/c/test_c.py::test_callback_return_type PASSED
94 src/c/test_c.py::test_a_lot_of_callbacks PASSED
95 src/c/test_c.py::test_callback_receiving_tiny_struct PASSED
96 src/c/test_c.py::test_callback_returning_tiny_struct PASSED
97 src/c/test_c.py::test_callback_receiving_struct PASSED
98 src/c/test_c.py::test_callback_returning_struct PASSED
99 src/c/test_c.py::test_callback_receiving_big_struct PASSED
100 src/c/test_c.py::test_callback_returning_big_struct PASSED
101 src/c/test_c.py::test_callback_returning_void PASSED
102 src/c/test_c.py::test_enum_type PASSED
103 src/c/test_c.py::test_cast_to_enum PASSED
104 src/c/test_c.py::test_enum_with_non_injective_mapping PASSED
105 src/c/test_c.py::test_enum_in_struct PASSED
106 src/c/test_c.py::test_enum_overflow PASSED
107 src/c/test_c.py::test_callback_returning_enum PASSED
108 src/c/test_c.py::test_callback_returning_enum_unsigned PASSED
109 src/c/test_c.py::test_callback_returning_char PASSED
110 src/c/test_c.py::test_callback_returning_wchar_t PASSED
111 src/c/test_c.py::test_struct_with_bitfields PASSED
112 src/c/test_c.py::test_bitfield_instance PASSED
113 src/c/test_c.py::test_bitfield_instance_init PASSED
114 src/c/test_c.py::test_weakref PASSED
115 src/c/test_c.py::test_no_inheritance PASSED
116 src/c/test_c.py::test_assign_string PASSED
117 src/c/test_c.py::test_add_error PASSED
118 src/c/test_c.py::test_void_errors PASSED
119 src/c/test_c.py::test_too_many_items PASSED
120 src/c/test_c.py::test_more_type_errors PASSED
121 src/c/test_c.py::test_more_overflow_errors PASSED
122 src/c/test_c.py::test_newp_copying PASSED
123 src/c/test_c.py::test_string PASSED
124 src/c/test_c.py::test_string_byte PASSED
125 src/c/test_c.py::test_string_wchar PASSED
126 src/c/test_c.py::test_string_typeerror PASSED
127 src/c/test_c.py::test_bug_convert_to_ptr PASSED
128 src/c/test_c.py::test_set_struct_fields PASSED
129 src/c/test_c.py::test_invalid_function_result_types PASSED
130 src/c/test_c.py::test_struct_return_in_func PASSED
131 src/c/test_c.py::test_cast_with_functionptr PASSED
132 src/c/test_c.py::test_wchar PASSED
133 src/c/test_c.py::test_char16 PASSED
134 src/c/test_c.py::test_char32 PASSED
135 src/c/test_c.py::test_wchar_variants_mix PASSED
136 src/c/test_c.py::test_keepalive_struct PASSED
137 src/c/test_c.py::test_nokeepalive_struct PASSED
138 src/c/test_c.py::test_owning_repr PASSED
139 src/c/test_c.py::test_cannot_dereference_void PASSED
140 src/c/test_c.py::test_iter PASSED
141 src/c/test_c.py::test_cmp PASSED
142 src/c/test_c.py::test_buffer PASSED
143 src/c/test_c.py::test_getcname PASSED
144 src/c/test_c.py::test_errno PASSED
145 src/c/test_c.py::test_errno_callback PASSED
146 src/c/test_c.py::test_cast_to_array PASSED
147 src/c/test_c.py::test_cast_invalid PASSED
148 src/c/test_c.py::test_bug_float_convertion PASSED
149 src/c/test_c.py::test_bug_delitem PASSED
150 src/c/test_c.py::test_bug_delattr PASSED
151 src/c/test_c.py::test_variable_length_struct SKIPPED (later)
152 src/c/test_c.py::test_autocast_int PASSED
153 src/c/test_c.py::test_autocast_float PASSED
154 src/c/test_c.py::test_longdouble PASSED
155 src/c/test_c.py::test_get_array_of_length_zero PASSED
156 src/c/test_c.py::test_nested_anonymous_struct PASSED
157 src/c/test_c.py::test_nested_anonymous_struct_2 PASSED
158 src/c/test_c.py::test_sizeof_union PASSED
159 src/c/test_c.py::test_unaligned_struct PASSED
160 src/c/test_c.py::test_CData_CType PASSED
161 src/c/test_c.py::test_no_cdata_float PASSED
162 src/c/test_c.py::test_bool PASSED
163 src/c/test_c.py::test_bool_forbidden_cases PASSED
164 src/c/test_c.py::test_typeoffsetof PASSED
165 src/c/test_c.py::test_typeoffsetof_array PASSED
166 src/c/test_c.py::test_typeoffsetof_no_bitfield PASSED
167 src/c/test_c.py::test_rawaddressof PASSED
168 src/c/test_c.py::test_newp_signed_unsigned_char PASSED
169 src/c/test_c.py::test_newp_from_bytearray_doesnt_work PASSED
170 src/c/test_c.py::test_string_assignment_to_byte_array PASSED
171 src/c/test_c.py::test_FILE PASSED
172 src/c/test_c.py::test_FILE_only_for_FILE_arg PASSED
173 src/c/test_c.py::test_FILE_object PASSED
174 src/c/test_c.py::test_errno_saved PASSED
175 src/c/test_c.py::test_GetLastError SKIPPED (GetLastError(): only for...)
176 src/c/test_c.py::test_nonstandard_integer_types PASSED
177 src/c/test_c.py::test_cannot_convert_unicode_to_charp PASSED
178 src/c/test_c.py::test_buffer_keepalive PASSED
179 src/c/test_c.py::test_slice PASSED
180 src/c/test_c.py::test_slice_ptr PASSED
181 src/c/test_c.py::test_slice_array_checkbounds PASSED
182 src/c/test_c.py::test_nonstandard_slice PASSED
183 src/c/test_c.py::test_setslice PASSED
184 src/c/test_c.py::test_setslice_array PASSED
185 src/c/test_c.py::test_cdata_name_module_doc PASSED
186 src/c/test_c.py::test_different_types_of_ptr_equality PASSED
187 src/c/test_c.py::test_new_handle PASSED
188 src/c/test_c.py::test_new_handle_cycle PASSED
189 src/c/test_c.py::test_bitfield_as_x86_gcc PASSED
190 src/c/test_c.py::test_bitfield_as_msvc PASSED
191 src/c/test_c.py::test_bitfield_as_arm_gcc PASSED
192 src/c/test_c.py::test_bitfield_as_ppc_gcc PASSED
193 src/c/test_c.py::test_struct_array_no_length PASSED
194 src/c/test_c.py::test_more_buffer_warning PASSED
195 src/c/test_c.py::test_struct_array_no_length_explicit_position PASSED
196 src/c/test_c.py::test_struct_array_not_aligned PASSED
197 src/c/test_c.py::test_ass_slice PASSED
198 src/c/test_c.py::test_void_p_arithmetic PASSED
199 src/c/test_c.py::test_sizeof_sliced_array PASSED
200 src/c/test_c.py::test_packed PASSED
201 src/c/test_c.py::test_packed_with_bitfields PASSED
202 src/c/test_c.py::test_from_buffer PASSED
203 src/c/test_c.py::test_from_buffer_not_str_unicode PASSED
204 src/c/test_c.py::test_from_buffer_bytearray PASSED
205 src/c/test_c.py::test_from_buffer_more_cases PASSED
206 src/c/test_c.py::test_from_buffer_require_writable PASSED
207 src/c/test_c.py::test_from_buffer_types PASSED
208 src/c/test_c.py::test_issue483 PASSED
209 src/c/test_c.py::test_memmove PASSED
210 src/c/test_c.py::test_memmove_buffer PASSED
211 src/c/test_c.py::test_memmove_readonly_readwrite PASSED
212 src/c/test_c.py::test_memmove_sign_check PASSED
213 src/c/test_c.py::test_memmove_bad_cdata PASSED
214 src/c/test_c.py::test_dereference_null_ptr PASSED
215 src/c/test_c.py::test_mixup PASSED
216 src/c/test_c.py::test_stdcall_function_type PASSED
217 src/c/test_c.py::test_get_common_types PASSED
218 src/c/test_c.py::test_unpack PASSED
219 src/c/test_c.py::test_cdata_dir PASSED
220 src/c/test_c.py::test_char_pointer_conversion PASSED
221 src/c/test_c.py::test_primitive_comparison PASSED
222 src/c/test_c.py::test_explicit_release_new PASSED
223 src/c/test_c.py::test_explicit_release_new_contextmgr PASSED
224 src/c/test_c.py::test_explicit_release_badtype PASSED
225 src/c/test_c.py::test_explicit_release_badtype_contextmgr PASSED
226 src/c/test_c.py::test_explicit_release_gc PASSED
227 src/c/test_c.py::test_explicit_release_gc_contextmgr PASSED
228 src/c/test_c.py::test_explicit_release_from_buffer PASSED
229 src/c/test_c.py::test_explicit_release_from_buffer_contextmgr PASSED
230 src/c/test_c.py::test_explicit_release_bytearray_on_cpython PASSED
231 src/c/test_c.py::test_int_doesnt_give_bool PASSED
232 src/c/test_c.py::test_cannot_call_null_function_pointer PASSED
233 src/c/test_c.py::test_huge_structure PASSED
234 src/c/test_c.py::test_get_types PASSED
235 src/c/test_c.py::test_type_available_with_correct_names PASSED
236 src/c/test_c.py::test_unaligned_types PASSED
237 testing/cffi0/test_cdata.py::test_typeof PASSED
238 testing/cffi0/test_ctypes.py::TestCTypes::test_integer_ranges PASSED
239 testing/cffi0/test_ctypes.py::TestCTypes::test_fixedsize_int PASSED
240 testing/cffi0/test_ctypes.py::TestCTypes::test_new_unsupported_type PASSED
241 testing/cffi0/test_ctypes.py::TestCTypes::test_new_single_integer PASSED
242 testing/cffi0/test_ctypes.py::TestCTypes::test_new_array_no_arg PASSED
243 testing/cffi0/test_ctypes.py::TestCTypes::test_array_indexing PASSED
244 testing/cffi0/test_ctypes.py::TestCTypes::test_new_array_args PASSED
245 testing/cffi0/test_ctypes.py::TestCTypes::test_new_array_varsize PASSED
246 testing/cffi0/test_ctypes.py::TestCTypes::test_pointer_init PASSED
247 testing/cffi0/test_ctypes.py::TestCTypes::test_cannot_cast PASSED
248 testing/cffi0/test_ctypes.py::TestCTypes::test_new_pointer_to_array PASSED
249 testing/cffi0/test_ctypes.py::TestCTypes::test_pointer_direct PASSED
250 testing/cffi0/test_ctypes.py::TestCTypes::test_repr PASSED
251 testing/cffi0/test_ctypes.py::TestCTypes::test_new_array_of_array PASSED
252 testing/cffi0/test_ctypes.py::TestCTypes::test_constructor_array_of_array PASSED
253 testing/cffi0/test_ctypes.py::TestCTypes::test_new_array_of_pointer_1 PASSED
254 testing/cffi0/test_ctypes.py::TestCTypes::test_new_array_of_pointer_2 PASSED
255 testing/cffi0/test_ctypes.py::TestCTypes::test_char PASSED
256 testing/cffi0/test_ctypes.py::TestCTypes::test_wchar_t SKIPPED (NotI...)
257 testing/cffi0/test_ctypes.py::TestCTypes::test_none_as_null_doesnt_work PASSED
258 testing/cffi0/test_ctypes.py::TestCTypes::test_float PASSED
259 testing/cffi0/test_ctypes.py::TestCTypes::test_struct_simple PASSED
260 testing/cffi0/test_ctypes.py::TestCTypes::test_constructor_struct_from_dict PASSED
261 testing/cffi0/test_ctypes.py::TestCTypes::test_struct_pointer PASSED
262 testing/cffi0/test_ctypes.py::TestCTypes::test_struct_opaque PASSED
263 testing/cffi0/test_ctypes.py::TestCTypes::test_pointer_to_struct PASSED
264 testing/cffi0/test_ctypes.py::TestCTypes::test_constructor_struct_of_array PASSED
265 testing/cffi0/test_ctypes.py::TestCTypes::test_recursive_struct PASSED
266 testing/cffi0/test_ctypes.py::TestCTypes::test_union_simple PASSED
267 testing/cffi0/test_ctypes.py::TestCTypes::test_union_opaque PASSED
268 testing/cffi0/test_ctypes.py::TestCTypes::test_union_initializer PASSED
269 testing/cffi0/test_ctypes.py::TestCTypes::test_sizeof_type PASSED
270 testing/cffi0/test_ctypes.py::TestCTypes::test_sizeof_cdata PASSED
271 testing/cffi0/test_ctypes.py::TestCTypes::test_string_from_char_pointer PASSED
272 testing/cffi0/test_ctypes.py::TestCTypes::test_unicode_from_wchar_pointer SKIPPED
273 testing/cffi0/test_ctypes.py::TestCTypes::test_string_from_char_array PASSED
274 testing/cffi0/test_ctypes.py::TestCTypes::test_string_from_wchar_array SKIPPED
275 testing/cffi0/test_ctypes.py::TestCTypes::test_fetch_const_char_p_field PASSED
276 testing/cffi0/test_ctypes.py::TestCTypes::test_fetch_const_wchar_p_field SKIPPED
277 testing/cffi0/test_ctypes.py::TestCTypes::test_voidp PASSED
278 testing/cffi0/test_ctypes.py::TestCTypes::test_functionptr_simple PASSED
279 testing/cffi0/test_ctypes.py::TestCTypes::test_functionptr_advanced PASSED
280 testing/cffi0/test_ctypes.py::TestCTypes::test_functionptr_voidptr_return PASSED
281 testing/cffi0/test_ctypes.py::TestCTypes::test_functionptr_intptr_return PASSED
282 testing/cffi0/test_ctypes.py::TestCTypes::test_functionptr_void_return PASSED
283 testing/cffi0/test_ctypes.py::TestCTypes::test_char_cast PASSED
284 testing/cffi0/test_ctypes.py::TestCTypes::test_wchar_cast SKIPPED (N...)
285 testing/cffi0/test_ctypes.py::TestCTypes::test_cast_array_to_charp PASSED
286 testing/cffi0/test_ctypes.py::TestCTypes::test_cast_between_pointers PASSED
287 testing/cffi0/test_ctypes.py::TestCTypes::test_cast_pointer_and_int PASSED
288 testing/cffi0/test_ctypes.py::TestCTypes::test_cast_functionptr_and_int PASSED
289 testing/cffi0/test_ctypes.py::TestCTypes::test_callback_crash PASSED
290 testing/cffi0/test_ctypes.py::TestCTypes::test_cast_float PASSED
291 testing/cffi0/test_ctypes.py::TestCTypes::test_enum PASSED
292 testing/cffi0/test_ctypes.py::TestCTypes::test_enum_in_struct PASSED
293 testing/cffi0/test_ctypes.py::TestCTypes::test_enum_non_contiguous PASSED
294 testing/cffi0/test_ctypes.py::TestCTypes::test_enum_char_hex_oct PASSED
295 testing/cffi0/test_ctypes.py::TestCTypes::test_enum_partial PASSED
296 testing/cffi0/test_ctypes.py::TestCTypes::test_array_of_struct PASSED
297 testing/cffi0/test_ctypes.py::TestCTypes::test_pointer_to_array PASSED
298 testing/cffi0/test_ctypes.py::TestCTypes::test_iterate_array PASSED
299 testing/cffi0/test_ctypes.py::TestCTypes::test_offsetof PASSED
300 testing/cffi0/test_ctypes.py::TestCTypes::test_offsetof_nested PASSED
301 testing/cffi0/test_ctypes.py::TestCTypes::test_offsetof_array PASSED
302 testing/cffi0/test_ctypes.py::TestCTypes::test_alignof PASSED
303 testing/cffi0/test_ctypes.py::TestCTypes::test_bitfield PASSED
304 testing/cffi0/test_ctypes.py::TestCTypes::test_bitfield_enum PASSED
305 testing/cffi0/test_ctypes.py::TestCTypes::test_anonymous_struct PASSED
306 testing/cffi0/test_ctypes.py::TestCTypes::test_struct_with_two_usages PASSED
307 testing/cffi0/test_ctypes.py::TestCTypes::test_pointer_arithmetic PASSED
308 testing/cffi0/test_ctypes.py::TestCTypes::test_pointer_comparison PASSED
309 testing/cffi0/test_ctypes.py::TestCTypes::test_integer_comparison PASSED
310 testing/cffi0/test_ctypes.py::TestCTypes::test_ffi_buffer_ptr SKIPPED
311 testing/cffi0/test_ctypes.py::TestCTypes::test_ffi_buffer_array SKIPPED
312 testing/cffi0/test_ctypes.py::TestCTypes::test_ffi_buffer_ptr_size SKIPPED
313 testing/cffi0/test_ctypes.py::TestCTypes::test_ffi_buffer_array_size SKIPPED
314 testing/cffi0/test_ctypes.py::TestCTypes::test_ffi_buffer_with_file SKIPPED
315 testing/cffi0/test_ctypes.py::TestCTypes::test_ffi_buffer_with_io SKIPPED
316 testing/cffi0/test_ctypes.py::TestCTypes::test_ffi_buffer_comparisons SKIPPED
317 testing/cffi0/test_ctypes.py::TestCTypes::test_array_in_struct PASSED
318 testing/cffi0/test_ctypes.py::TestCTypes::test_struct_containing_array_varsize_workaround PASSED
319 testing/cffi0/test_ctypes.py::TestCTypes::test_new_struct_containing_array_varsize SKIPPED
320 testing/cffi0/test_ctypes.py::TestCTypes::test_ffi_typeof_getcname PASSED
321 testing/cffi0/test_ctypes.py::TestCTypes::test_callback_as_function_argument PASSED
322 testing/cffi0/test_ctypes.py::TestCTypes::test_vararg_callback SKIPPED
323 testing/cffi0/test_ctypes.py::TestCTypes::test_callback_decorator PASSED
324 testing/cffi0/test_ctypes.py::TestCTypes::test_unique_types PASSED
325 testing/cffi0/test_ctypes.py::TestCTypes::test_anonymous_enum PASSED
326 testing/cffi0/test_ctypes.py::TestCTypes::test_opaque_enum PASSED
327 testing/cffi0/test_ctypes.py::TestCTypes::test_new_ctype PASSED
328 testing/cffi0/test_ctypes.py::TestCTypes::test_enum_with_non_injective_mapping PASSED
329 testing/cffi0/test_ctypes.py::TestCTypes::test_enum_refer_previous_enum_value PASSED
330 testing/cffi0/test_ctypes.py::TestCTypes::test_gc PASSED
331 testing/cffi0/test_ctypes.py::TestCTypes::test_gc_2 PASSED
332 testing/cffi0/test_ctypes.py::TestCTypes::test_gc_3 PASSED
333 testing/cffi0/test_ctypes.py::TestCTypes::test_gc_4 PASSED
334 testing/cffi0/test_ctypes.py::TestCTypes::test_gc_disable PASSED
335 testing/cffi0/test_ctypes.py::TestCTypes::test_gc_finite_list PASSED
336 testing/cffi0/test_ctypes.py::TestCTypes::test_CData_CType PASSED
337 testing/cffi0/test_ctypes.py::TestCTypes::test_bool PASSED
338 testing/cffi0/test_ctypes.py::TestCTypes::test_use_own_bool PASSED
339 testing/cffi0/test_ctypes.py::TestCTypes::test_ordering_bug1 PASSED
340 testing/cffi0/test_ctypes.py::TestCTypes::test_ordering_bug2 PASSED
341 testing/cffi0/test_ctypes.py::TestCTypes::test_addressof PASSED
342 testing/cffi0/test_ctypes.py::TestCTypes::test_addressof_field PASSED
343 testing/cffi0/test_ctypes.py::TestCTypes::test_addressof_field_nested PASSED
344 testing/cffi0/test_ctypes.py::TestCTypes::test_addressof_anonymous_struct PASSED
345 testing/cffi0/test_ctypes.py::TestCTypes::test_addressof_array PASSED
346 testing/cffi0/test_ctypes.py::TestCTypes::test_addressof_pointer PASSED
347 testing/cffi0/test_ctypes.py::TestCTypes::test_addressof_array_in_struct PASSED
348 testing/cffi0/test_ctypes.py::TestCTypes::test_multiple_independent_structs PASSED
349 testing/cffi0/test_ctypes.py::TestCTypes::test_missing_include PASSED
350 testing/cffi0/test_ctypes.py::TestCTypes::test_include_typedef PASSED
351 testing/cffi0/test_ctypes.py::TestCTypes::test_include_struct PASSED
352 testing/cffi0/test_ctypes.py::TestCTypes::test_include_union PASSED
353 testing/cffi0/test_ctypes.py::TestCTypes::test_include_enum PASSED
354 testing/cffi0/test_ctypes.py::TestCTypes::test_include_typedef_2 PASSED
355 testing/cffi0/test_ctypes.py::TestCTypes::test_ignore_multiple_declarations_of_constant PASSED
356 testing/cffi0/test_ctypes.py::TestCTypes::test_struct_packed PASSED
357 testing/cffi0/test_ctypes.py::TestCTypes::test_pack_valueerror PASSED
358 testing/cffi0/test_ctypes.py::TestCTypes::test_define_integer_constant PASSED
359 testing/cffi0/test_ctypes.py::TestCTypes::test_opaque_struct_becomes_nonopaque PASSED
360 testing/cffi0/test_ctypes.py::TestCTypes::test_ffi_self_include PASSED
361 testing/cffi0/test_ctypes.py::TestCTypes::test_anonymous_enum_include PASSED
362 testing/cffi0/test_ctypes.py::TestCTypes::test_init_once PASSED
363 testing/cffi0/test_ctypes.py::TestCTypes::test_init_once_multithread PASSED
364 testing/cffi0/test_ctypes.py::TestCTypes::test_sizeof_struct_directly PASSED
365 testing/cffi0/test_ctypes.py::TestCTypes::test_callback_large_struct PASSED
366 testing/cffi0/test_ctypes.py::TestCTypes::test_ffi_array_as_init PASSED
367 testing/cffi0/test_ctypes.py::TestCTypes::test_too_many_initializers PASSED
368 testing/cffi0/test_ctypes.py::TestCTypes::test_array_of_func_ptr SKIPPED
369 testing/cffi0/test_ctypes.py::TestCTypes::test_structptr_argument SKIPPED
370 testing/cffi0/test_ctypes.py::TestCTypes::test_array_argument_as_list SKIPPED
371 testing/cffi0/test_ctypes.py::TestCTypes::test_cast_to_array_type SKIPPED
372 testing/cffi0/test_ctypes.py::TestCTypes::test_nested_anonymous_struct SKIPPED
373 testing/cffi0/test_ctypes.py::TestCTypes::test_nested_field_offset_align SKIPPED
374 testing/cffi0/test_ctypes.py::TestCTypes::test_nested_anonymous_union SKIPPED
375 testing/cffi0/test_ctypes.py::TestCTypes::test_nested_anonymous_struct_2 SKIPPED
376 testing/cffi0/test_ctypes.py::TestCTypes::test_CData_CType_2 SKIPPED
377 testing/cffi0/test_ffi_backend.py::TestFFI::test_getting_errno PASSED
378 testing/cffi0/test_ffi_backend.py::TestFFI::test_setting_errno PASSED
379 testing/cffi0/test_ffi_backend.py::TestFFI::test_my_array_7 PASSED
380 testing/cffi0/test_ffi_backend.py::TestFFI::test_my_array_no_length PASSED
381 testing/cffi0/test_ffi_backend.py::TestFFI::test_keepalive_lib PASSED
382 testing/cffi0/test_ffi_backend.py::TestFFI::test_keepalive_ffi PASSED
383 testing/cffi0/test_ffi_backend.py::TestFFI::test_struct_by_value PASSED
384 testing/cffi0/test_ffi_backend.py::TestFFI::test_addressof_lib PASSED
385 testing/cffi0/test_ffi_backend.py::TestFFI::test_char16_char32_t PASSED
386 testing/cffi0/test_ffi_backend.py::TestFFI::test_modify_struct_value PASSED
387 testing/cffi0/test_ffi_backend.py::TestFFI::test_dlopen_handle PASSED
388 testing/cffi0/test_ffi_backend.py::TestFFI::test_return_three_bytes PASSED
389 testing/cffi0/test_ffi_backend.py::TestFFI::test_sin PASSED
390 testing/cffi0/test_ffi_backend.py::TestFFI::test_sinf PASSED
391 testing/cffi0/test_ffi_backend.py::TestFFI::test_getenv_no_return_value PASSED
392 testing/cffi0/test_ffi_backend.py::TestFFI::test_dlopen_filename PASSED
393 testing/cffi0/test_ffi_backend.py::TestFFI::test_dlopen_flags PASSED
394 testing/cffi0/test_ffi_backend.py::TestFFI::test_dlopen_constant PASSED
395 testing/cffi0/test_ffi_backend.py::TestFFI::test_tlsalloc SKIPPED (w...)
396 testing/cffi0/test_ffi_backend.py::TestFFI::test_fputs SKIPPED (prob...)
397 testing/cffi0/test_ffi_backend.py::TestFFI::test_fputs_without_const SKIPPED
398 testing/cffi0/test_ffi_backend.py::TestFFI::test_vararg SKIPPED (pro...)
399 testing/cffi0/test_ffi_backend.py::TestFFI::test_must_specify_type_of_vararg PASSED
400 testing/cffi0/test_ffi_backend.py::TestFFI::test_function_has_a_c_type PASSED
401 testing/cffi0/test_ffi_backend.py::TestFFI::test_function_pointer SKIPPED
402 testing/cffi0/test_ffi_backend.py::TestFFI::test_callback_returning_void PASSED
403 testing/cffi0/test_ffi_backend.py::TestFFI::test_callback_returning_struct_three_bytes PASSED
404 testing/cffi0/test_ffi_backend.py::TestFFI::test_passing_array PASSED
405 testing/cffi0/test_ffi_backend.py::TestFFI::test_write_variable SKIPPED
406 testing/cffi0/test_ffi_backend.py::TestFFI::test_strchr PASSED
407 testing/cffi0/test_ffi_backend.py::TestFFI::test_function_with_struct_argument PASSED
408 testing/cffi0/test_ffi_backend.py::TestFFI::test_function_typedef PASSED
409 testing/cffi0/test_ffi_backend.py::TestFFI::test_fputs_custom_FILE PASSED
410 testing/cffi0/test_ffi_backend.py::TestFFI::test_constants_on_lib PASSED
411 testing/cffi0/test_ffi_backend.py::TestFFI::test_void_star_accepts_string PASSED
412 testing/cffi0/test_ffi_backend.py::TestFFI::test_signed_char_star_accepts_string PASSED
413 testing/cffi0/test_ffi_backend.py::TestFFI::test_unsigned_char_star_accepts_string PASSED
414 testing/cffi0/test_ffi_backend.py::TestFFI::test_missing_function PASSED
415 testing/cffi0/test_ffi_backend.py::TestFFI::test_wraps_from_stdlib PASSED
416 testing/cffi0/test_ffi_backend.py::TestFFI::test_free_callback_cycle PASSED
417 testing/cffi0/test_ffi_backend.py::TestFFI::test_windows_stdcall SKIPPED
418 testing/cffi0/test_ffi_backend.py::TestFFI::test_explicit_cdecl_stdcall SKIPPED
419 testing/cffi0/test_ffi_backend.py::TestFFI::test_stdcall_only_on_windows PASSED
420 testing/cffi0/test_ffi_backend.py::TestFFI::test_dir_on_dlopen_lib PASSED
421 testing/cffi0/test_ffi_backend.py::TestFFI::test_dlclose PASSED
422 testing/cffi0/test_ffi_backend.py::TestFFI::test_passing_large_list PASSED
423 testing/cffi0/test_ffi_backend.py::TestFFI::test_integer_ranges PASSED
424 testing/cffi0/test_ffi_backend.py::TestFFI::test_fixedsize_int PASSED
425 testing/cffi0/test_ffi_backend.py::TestFFI::test_new_unsupported_type PASSED
426 testing/cffi0/test_ffi_backend.py::TestFFI::test_new_single_integer PASSED
427 testing/cffi0/test_ffi_backend.py::TestFFI::test_new_array_no_arg PASSED
428 testing/cffi0/test_ffi_backend.py::TestFFI::test_array_indexing PASSED
429 testing/cffi0/test_ffi_backend.py::TestFFI::test_new_array_args PASSED
430 testing/cffi0/test_ffi_backend.py::TestFFI::test_new_array_varsize PASSED
431 testing/cffi0/test_ffi_backend.py::TestFFI::test_pointer_init PASSED
432 testing/cffi0/test_ffi_backend.py::TestFFI::test_cannot_cast PASSED
433 testing/cffi0/test_ffi_backend.py::TestFFI::test_new_pointer_to_array PASSED
434 testing/cffi0/test_ffi_backend.py::TestFFI::test_pointer_direct PASSED
435 testing/cffi0/test_ffi_backend.py::TestFFI::test_repr PASSED
436 testing/cffi0/test_ffi_backend.py::TestFFI::test_new_array_of_array PASSED
437 testing/cffi0/test_ffi_backend.py::TestFFI::test_constructor_array_of_array PASSED
438 testing/cffi0/test_ffi_backend.py::TestFFI::test_new_array_of_pointer_1 PASSED
439 testing/cffi0/test_ffi_backend.py::TestFFI::test_new_array_of_pointer_2 PASSED
440 testing/cffi0/test_ffi_backend.py::TestFFI::test_char PASSED
441 testing/cffi0/test_ffi_backend.py::TestFFI::test_wchar_t PASSED
442 testing/cffi0/test_ffi_backend.py::TestFFI::test_none_as_null_doesnt_work PASSED
443 testing/cffi0/test_ffi_backend.py::TestFFI::test_float PASSED
444 testing/cffi0/test_ffi_backend.py::TestFFI::test_struct_simple PASSED
445 testing/cffi0/test_ffi_backend.py::TestFFI::test_constructor_struct_from_dict PASSED
446 testing/cffi0/test_ffi_backend.py::TestFFI::test_struct_pointer PASSED
447 testing/cffi0/test_ffi_backend.py::TestFFI::test_struct_opaque PASSED
448 testing/cffi0/test_ffi_backend.py::TestFFI::test_pointer_to_struct PASSED
449 testing/cffi0/test_ffi_backend.py::TestFFI::test_constructor_struct_of_array PASSED
450 testing/cffi0/test_ffi_backend.py::TestFFI::test_recursive_struct PASSED
451 testing/cffi0/test_ffi_backend.py::TestFFI::test_union_simple PASSED
452 testing/cffi0/test_ffi_backend.py::TestFFI::test_union_opaque PASSED
453 testing/cffi0/test_ffi_backend.py::TestFFI::test_union_initializer PASSED
454 testing/cffi0/test_ffi_backend.py::TestFFI::test_sizeof_type PASSED
455 testing/cffi0/test_ffi_backend.py::TestFFI::test_sizeof_cdata PASSED
456 testing/cffi0/test_ffi_backend.py::TestFFI::test_string_from_char_pointer PASSED
457 testing/cffi0/test_ffi_backend.py::TestFFI::test_unicode_from_wchar_pointer PASSED
458 testing/cffi0/test_ffi_backend.py::TestFFI::test_string_from_char_array PASSED
459 testing/cffi0/test_ffi_backend.py::TestFFI::test_string_from_wchar_array PASSED
460 testing/cffi0/test_ffi_backend.py::TestFFI::test_fetch_const_char_p_field PASSED
461 testing/cffi0/test_ffi_backend.py::TestFFI::test_fetch_const_wchar_p_field PASSED
462 testing/cffi0/test_ffi_backend.py::TestFFI::test_voidp PASSED
463 testing/cffi0/test_ffi_backend.py::TestFFI::test_functionptr_simple PASSED
464 testing/cffi0/test_ffi_backend.py::TestFFI::test_functionptr_advanced PASSED
465 testing/cffi0/test_ffi_backend.py::TestFFI::test_functionptr_voidptr_return PASSED
466 testing/cffi0/test_ffi_backend.py::TestFFI::test_functionptr_intptr_return PASSED
467 testing/cffi0/test_ffi_backend.py::TestFFI::test_functionptr_void_return PASSED
468 testing/cffi0/test_ffi_backend.py::TestFFI::test_char_cast PASSED
469 testing/cffi0/test_ffi_backend.py::TestFFI::test_wchar_cast PASSED
470 testing/cffi0/test_ffi_backend.py::TestFFI::test_cast_array_to_charp PASSED
471 testing/cffi0/test_ffi_backend.py::TestFFI::test_cast_between_pointers PASSED
472 testing/cffi0/test_ffi_backend.py::TestFFI::test_cast_pointer_and_int PASSED
473 testing/cffi0/test_ffi_backend.py::TestFFI::test_cast_functionptr_and_int PASSED
474 testing/cffi0/test_ffi_backend.py::TestFFI::test_callback_crash PASSED
475 testing/cffi0/test_ffi_backend.py::TestFFI::test_structptr_argument PASSED
476 testing/cffi0/test_ffi_backend.py::TestFFI::test_array_argument_as_list PASSED
477 testing/cffi0/test_ffi_backend.py::TestFFI::test_cast_float PASSED
478 testing/cffi0/test_ffi_backend.py::TestFFI::test_enum PASSED
479 testing/cffi0/test_ffi_backend.py::TestFFI::test_enum_in_struct PASSED
480 testing/cffi0/test_ffi_backend.py::TestFFI::test_enum_non_contiguous PASSED
481 testing/cffi0/test_ffi_backend.py::TestFFI::test_enum_char_hex_oct PASSED
482 testing/cffi0/test_ffi_backend.py::TestFFI::test_enum_partial PASSED
483 testing/cffi0/test_ffi_backend.py::TestFFI::test_array_of_struct PASSED
484 testing/cffi0/test_ffi_backend.py::TestFFI::test_pointer_to_array PASSED
485 testing/cffi0/test_ffi_backend.py::TestFFI::test_iterate_array PASSED
486 testing/cffi0/test_ffi_backend.py::TestFFI::test_offsetof PASSED
487 testing/cffi0/test_ffi_backend.py::TestFFI::test_offsetof_nested PASSED
488 testing/cffi0/test_ffi_backend.py::TestFFI::test_offsetof_array PASSED
489 testing/cffi0/test_ffi_backend.py::TestFFI::test_alignof PASSED
490 testing/cffi0/test_ffi_backend.py::TestFFI::test_bitfield PASSED
491 testing/cffi0/test_ffi_backend.py::TestFFI::test_bitfield_enum PASSED
492 testing/cffi0/test_ffi_backend.py::TestFFI::test_anonymous_struct PASSED
493 testing/cffi0/test_ffi_backend.py::TestFFI::test_struct_with_two_usages PASSED
494 testing/cffi0/test_ffi_backend.py::TestFFI::test_pointer_arithmetic PASSED
495 testing/cffi0/test_ffi_backend.py::TestFFI::test_pointer_comparison PASSED
496 testing/cffi0/test_ffi_backend.py::TestFFI::test_integer_comparison PASSED
497 testing/cffi0/test_ffi_backend.py::TestFFI::test_ffi_buffer_ptr PASSED
498 testing/cffi0/test_ffi_backend.py::TestFFI::test_ffi_buffer_array PASSED
499 testing/cffi0/test_ffi_backend.py::TestFFI::test_ffi_buffer_ptr_size PASSED
500 testing/cffi0/test_ffi_backend.py::TestFFI::test_ffi_buffer_array_size PASSED
501 testing/cffi0/test_ffi_backend.py::TestFFI::test_ffi_buffer_with_file PASSED
502 testing/cffi0/test_ffi_backend.py::TestFFI::test_ffi_buffer_with_io PASSED
503 testing/cffi0/test_ffi_backend.py::TestFFI::test_ffi_buffer_comparisons PASSED
504 testing/cffi0/test_ffi_backend.py::TestFFI::test_array_in_struct PASSED
505 testing/cffi0/test_ffi_backend.py::TestFFI::test_struct_containing_array_varsize_workaround PASSED
506 testing/cffi0/test_ffi_backend.py::TestFFI::test_new_struct_containing_array_varsize SKIPPED
507 testing/cffi0/test_ffi_backend.py::TestFFI::test_ffi_typeof_getcname PASSED
508 testing/cffi0/test_ffi_backend.py::TestFFI::test_array_of_func_ptr PASSED
509 testing/cffi0/test_ffi_backend.py::TestFFI::test_callback_as_function_argument PASSED
510 testing/cffi0/test_ffi_backend.py::TestFFI::test_vararg_callback SKIPPED
511 testing/cffi0/test_ffi_backend.py::TestFFI::test_callback_decorator PASSED
512 testing/cffi0/test_ffi_backend.py::TestFFI::test_unique_types PASSED
513 testing/cffi0/test_ffi_backend.py::TestFFI::test_anonymous_enum PASSED
514 testing/cffi0/test_ffi_backend.py::TestFFI::test_opaque_enum PASSED
515 testing/cffi0/test_ffi_backend.py::TestFFI::test_new_ctype PASSED
516 testing/cffi0/test_ffi_backend.py::TestFFI::test_enum_with_non_injective_mapping PASSED
517 testing/cffi0/test_ffi_backend.py::TestFFI::test_enum_refer_previous_enum_value PASSED
518 testing/cffi0/test_ffi_backend.py::TestFFI::test_nested_anonymous_struct PASSED
519 testing/cffi0/test_ffi_backend.py::TestFFI::test_nested_field_offset_align PASSED
520 testing/cffi0/test_ffi_backend.py::TestFFI::test_nested_anonymous_union PASSED
521 testing/cffi0/test_ffi_backend.py::TestFFI::test_nested_anonymous_struct_2 PASSED
522 testing/cffi0/test_ffi_backend.py::TestFFI::test_cast_to_array_type PASSED
523 testing/cffi0/test_ffi_backend.py::TestFFI::test_gc PASSED
524 testing/cffi0/test_ffi_backend.py::TestFFI::test_gc_2 PASSED
525 testing/cffi0/test_ffi_backend.py::TestFFI::test_gc_3 PASSED
526 testing/cffi0/test_ffi_backend.py::TestFFI::test_gc_4 PASSED
527 testing/cffi0/test_ffi_backend.py::TestFFI::test_gc_disable PASSED
528 testing/cffi0/test_ffi_backend.py::TestFFI::test_gc_finite_list PASSED
529 testing/cffi0/test_ffi_backend.py::TestFFI::test_CData_CType PASSED
530 testing/cffi0/test_ffi_backend.py::TestFFI::test_CData_CType_2 PASSED
531 testing/cffi0/test_ffi_backend.py::TestFFI::test_bool PASSED
532 testing/cffi0/test_ffi_backend.py::TestFFI::test_use_own_bool PASSED
533 testing/cffi0/test_ffi_backend.py::TestFFI::test_ordering_bug1 PASSED
534 testing/cffi0/test_ffi_backend.py::TestFFI::test_ordering_bug2 PASSED
535 testing/cffi0/test_ffi_backend.py::TestFFI::test_addressof PASSED
536 testing/cffi0/test_ffi_backend.py::TestFFI::test_addressof_field PASSED
537 testing/cffi0/test_ffi_backend.py::TestFFI::test_addressof_field_nested PASSED
538 testing/cffi0/test_ffi_backend.py::TestFFI::test_addressof_anonymous_struct PASSED
539 testing/cffi0/test_ffi_backend.py::TestFFI::test_addressof_array PASSED
540 testing/cffi0/test_ffi_backend.py::TestFFI::test_addressof_pointer PASSED
541 testing/cffi0/test_ffi_backend.py::TestFFI::test_addressof_array_in_struct PASSED
542 testing/cffi0/test_ffi_backend.py::TestFFI::test_multiple_independent_structs PASSED
543 testing/cffi0/test_ffi_backend.py::TestFFI::test_missing_include PASSED
544 testing/cffi0/test_ffi_backend.py::TestFFI::test_include_typedef PASSED
545 testing/cffi0/test_ffi_backend.py::TestFFI::test_include_struct PASSED
546 testing/cffi0/test_ffi_backend.py::TestFFI::test_include_union PASSED
547 testing/cffi0/test_ffi_backend.py::TestFFI::test_include_enum PASSED
548 testing/cffi0/test_ffi_backend.py::TestFFI::test_include_typedef_2 PASSED
549 testing/cffi0/test_ffi_backend.py::TestFFI::test_ignore_multiple_declarations_of_constant PASSED
550 testing/cffi0/test_ffi_backend.py::TestFFI::test_struct_packed PASSED
551 testing/cffi0/test_ffi_backend.py::TestFFI::test_pack_valueerror PASSED
552 testing/cffi0/test_ffi_backend.py::TestFFI::test_define_integer_constant PASSED
553 testing/cffi0/test_ffi_backend.py::TestFFI::test_opaque_struct_becomes_nonopaque PASSED
554 testing/cffi0/test_ffi_backend.py::TestFFI::test_ffi_self_include PASSED
555 testing/cffi0/test_ffi_backend.py::TestFFI::test_anonymous_enum_include PASSED
556 testing/cffi0/test_ffi_backend.py::TestFFI::test_init_once PASSED
557 testing/cffi0/test_ffi_backend.py::TestFFI::test_init_once_multithread PASSED
558 testing/cffi0/test_ffi_backend.py::TestFFI::test_sizeof_struct_directly PASSED
559 testing/cffi0/test_ffi_backend.py::TestFFI::test_callback_large_struct PASSED
560 testing/cffi0/test_ffi_backend.py::TestFFI::test_ffi_array_as_init PASSED
561 testing/cffi0/test_ffi_backend.py::TestFFI::test_too_many_initializers PASSED
562 testing/cffi0/test_ffi_backend.py::TestFFI::test_not_supported_bitfield_in_result PASSED
563 testing/cffi0/test_ffi_backend.py::TestFFI::test_inspecttype PASSED
564 testing/cffi0/test_ffi_backend.py::TestFFI::test_new_handle PASSED
565 testing/cffi0/test_ffi_backend.py::TestFFI::test_callback_onerror PASSED
566 testing/cffi0/test_ffi_backend.py::TestFFI::test_ffi_new_allocator_2 PASSED
567 testing/cffi0/test_ffi_backend.py::TestFFI::test_ffi_new_allocator_3 PASSED
568 testing/cffi0/test_ffi_backend.py::TestFFI::test_ffi_new_allocator_4 PASSED
569 testing/cffi0/test_ffi_backend.py::TestFFI::test_new_struct_containing_struct_containing_array_varsize PASSED
570 testing/cffi0/test_ffi_backend.py::TestFFI::test_bogus_struct_containing_struct_containing_array_varsize PASSED
571 testing/cffi0/test_ffi_backend.py::TestFFI::test_issue553 PASSED
572 testing/cffi0/test_ffi_backend.py::TestFFI::test_issue553_from_buffer PASSED
573 testing/cffi0/test_ffi_backend.py::TestBitfield::test_bitfield_basic PASSED
574 testing/cffi0/test_ffi_backend.py::TestBitfield::test_bitfield_reuse_if_enough_space PASSED
575 testing/cffi0/test_ffi_backend.py::TestBitfield::test_bitfield_anonymous_no_align PASSED
576 testing/cffi0/test_ffi_backend.py::TestBitfield::test_bitfield_anonymous_align_arm SKIPPED
577 testing/cffi0/test_ffi_backend.py::TestBitfield::test_bitfield_zero PASSED
578 testing/cffi0/test_ffi_backend.py::TestBitfield::test_bitfield_zero_arm SKIPPED
579 testing/cffi0/test_ffi_backend.py::TestBitfield::test_error_cases PASSED
580 testing/cffi0/test_ffi_backend.py::TestBitfield::test_struct_with_typedef PASSED
581 testing/cffi0/test_ffi_backend.py::TestBitfield::test_struct_array_no_length PASSED
582 testing/cffi0/test_ffi_backend.py::TestBitfield::test_getwinerror SKIPPED
583 testing/cffi0/test_ffi_backend.py::TestBitfield::test_from_buffer PASSED
584 testing/cffi0/test_ffi_backend.py::TestBitfield::test_release PASSED
585 testing/cffi0/test_ffi_backend.py::TestBitfield::test_memmove PASSED
586 testing/cffi0/test_ffi_backend.py::TestBitfield::test_memmove_buffer PASSED
587 testing/cffi0/test_ffi_backend.py::TestBitfield::test_memmove_readonly_readwrite PASSED
588 testing/cffi0/test_ffi_backend.py::TestBitfield::test_all_primitives PASSED
589 testing/cffi0/test_ffi_backend.py::TestBitfield::test_ffi_def_extern PASSED
590 testing/cffi0/test_ffi_backend.py::TestBitfield::test_introspect_typedef PASSED
591 testing/cffi0/test_ffi_backend.py::TestBitfield::test_introspect_struct PASSED
592 testing/cffi0/test_ffi_backend.py::TestBitfield::test_introspect_union PASSED
593 testing/cffi0/test_ffi_backend.py::TestBitfield::test_introspect_struct_and_typedef PASSED
594 testing/cffi0/test_ffi_backend.py::TestBitfield::test_introspect_included_type PASSED
595 testing/cffi0/test_ffi_backend.py::TestBitfield::test_introspect_order PASSED
596 testing/cffi0/test_ffi_backend.py::TestBitfield::test_unpack PASSED
597 testing/cffi0/test_ffi_backend.py::TestBitfield::test_negative_array_size PASSED
598 testing/cffi0/test_ffi_backend.py::TestBitfield::test_cannot_instantiate_manually PASSED
599 testing/cffi0/test_ffi_backend.py::TestBitfield::test_explicitly_defined_char16_t PASSED
600 testing/cffi0/test_ffi_backend.py::TestBitfield::test_char16_t PASSED
601 testing/cffi0/test_ffi_backend.py::TestBitfield::test_char32_t PASSED
602 testing/cffi0/test_function.py::TestFunction::test_sin PASSED
603 testing/cffi0/test_function.py::TestFunction::test_sinf PASSED
604 testing/cffi0/test_function.py::TestFunction::test_getenv_no_return_value PASSED
605 testing/cffi0/test_function.py::TestFunction::test_dlopen_filename PASSED
606 testing/cffi0/test_function.py::TestFunction::test_dlopen_flags PASSED
607 testing/cffi0/test_function.py::TestFunction::test_dlopen_constant PASSED
608 testing/cffi0/test_function.py::TestFunction::test_tlsalloc SKIPPED
609 testing/cffi0/test_function.py::TestFunction::test_fputs SKIPPED (pr...)
610 testing/cffi0/test_function.py::TestFunction::test_fputs_without_const SKIPPED
611 testing/cffi0/test_function.py::TestFunction::test_vararg SKIPPED (p...)
612 testing/cffi0/test_function.py::TestFunction::test_must_specify_type_of_vararg PASSED
613 testing/cffi0/test_function.py::TestFunction::test_function_has_a_c_type PASSED
614 testing/cffi0/test_function.py::TestFunction::test_function_pointer SKIPPED
615 testing/cffi0/test_function.py::TestFunction::test_callback_returning_void PASSED
616 testing/cffi0/test_function.py::TestFunction::test_callback_returning_struct_three_bytes SKIPPED
617 testing/cffi0/test_function.py::TestFunction::test_passing_array PASSED
618 testing/cffi0/test_function.py::TestFunction::test_write_variable SKIPPED
619 testing/cffi0/test_function.py::TestFunction::test_strchr PASSED
620 testing/cffi0/test_function.py::TestFunction::test_function_with_struct_argument PASSED
621 testing/cffi0/test_function.py::TestFunction::test_function_typedef PASSED
622 testing/cffi0/test_function.py::TestFunction::test_fputs_custom_FILE SKIPPED
623 testing/cffi0/test_function.py::TestFunction::test_constants_on_lib PASSED
624 testing/cffi0/test_function.py::TestFunction::test_void_star_accepts_string PASSED
625 testing/cffi0/test_function.py::TestFunction::test_signed_char_star_accepts_string SKIPPED
626 testing/cffi0/test_function.py::TestFunction::test_unsigned_char_star_accepts_string SKIPPED
627 testing/cffi0/test_function.py::TestFunction::test_missing_function PASSED
628 testing/cffi0/test_function.py::TestFunction::test_wraps_from_stdlib PASSED
629 testing/cffi0/test_function.py::TestFunction::test_free_callback_cycle SKIPPED
630 testing/cffi0/test_function.py::TestFunction::test_windows_stdcall SKIPPED
631 testing/cffi0/test_function.py::TestFunction::test_explicit_cdecl_stdcall SKIPPED
632 testing/cffi0/test_function.py::TestFunction::test_stdcall_only_on_windows PASSED
633 testing/cffi0/test_function.py::TestFunction::test_dir_on_dlopen_lib PASSED
634 testing/cffi0/test_function.py::TestFunction::test_dlclose SKIPPED (...)
635 testing/cffi0/test_function.py::TestFunction::test_passing_large_list SKIPPED
636 testing/cffi0/test_model.py::test_void_type PASSED
637 testing/cffi0/test_model.py::test_primitive_type PASSED
638 testing/cffi0/test_model.py::test_raw_function_type PASSED
639 testing/cffi0/test_model.py::test_function_ptr_type PASSED
640 testing/cffi0/test_model.py::test_pointer_type PASSED
641 testing/cffi0/test_model.py::test_const_pointer_type PASSED
642 testing/cffi0/test_model.py::test_qual_pointer_type PASSED
643 testing/cffi0/test_model.py::test_unknown_pointer_type PASSED
644 testing/cffi0/test_model.py::test_unknown_type PASSED
645 testing/cffi0/test_model.py::test_array_type PASSED
646 testing/cffi0/test_model.py::test_struct_type PASSED
647 testing/cffi0/test_model.py::test_union_type PASSED
648 testing/cffi0/test_model.py::test_enum_type PASSED
649 testing/cffi0/test_ownlib.py::TestOwnLib::test_getting_errno PASSED
650 testing/cffi0/test_ownlib.py::TestOwnLib::test_setting_errno PASSED
651 testing/cffi0/test_ownlib.py::TestOwnLib::test_my_array_7 SKIPPED (n...)
652 testing/cffi0/test_ownlib.py::TestOwnLib::test_my_array_no_length SKIPPED
653 testing/cffi0/test_ownlib.py::TestOwnLib::test_keepalive_lib PASSED
654 testing/cffi0/test_ownlib.py::TestOwnLib::test_keepalive_ffi PASSED
655 testing/cffi0/test_ownlib.py::TestOwnLib::test_struct_by_value PASSED
656 testing/cffi0/test_ownlib.py::TestOwnLib::test_addressof_lib SKIPPED
657 testing/cffi0/test_ownlib.py::TestOwnLib::test_char16_char32_t SKIPPED
658 testing/cffi0/test_ownlib.py::TestOwnLib::test_modify_struct_value SKIPPED
659 testing/cffi0/test_ownlib.py::TestOwnLib::test_dlopen_handle SKIPPED
660 testing/cffi0/test_ownlib.py::TestOwnLib::test_return_three_bytes SKIPPED
661 testing/cffi0/test_parsing.py::test_simple PASSED
662 testing/cffi0/test_parsing.py::test_pipe PASSED
663 testing/cffi0/test_parsing.py::test_vararg PASSED
664 testing/cffi0/test_parsing.py::test_no_args PASSED
665 testing/cffi0/test_parsing.py::test_typedef PASSED
666 testing/cffi0/test_parsing.py::test_typedef_more_complex PASSED
667 testing/cffi0/test_parsing.py::test_typedef_array_convert_array_to_pointer PASSED
668 testing/cffi0/test_parsing.py::test_remove_comments PASSED
669 testing/cffi0/test_parsing.py::test_remove_line_continuation_comments PASSED
670 testing/cffi0/test_parsing.py::test_dont_remove_comment_in_line_directives PASSED
671 testing/cffi0/test_parsing.py::test_multiple_line_directives PASSED
672 testing/cffi0/test_parsing.py::test_commented_line_directive PASSED
673 testing/cffi0/test_parsing.py::test_line_continuation_in_defines PASSED
674 testing/cffi0/test_parsing.py::test_define_not_supported_for_now PASSED
675 testing/cffi0/test_parsing.py::test_unnamed_struct PASSED
676 testing/cffi0/test_parsing.py::test_override PASSED
677 testing/cffi0/test_parsing.py::test_cannot_have_only_variadic_part PASSED
678 testing/cffi0/test_parsing.py::test_parse_error PASSED
679 testing/cffi0/test_parsing.py::test_error_custom_lineno PASSED
680 testing/cffi0/test_parsing.py::test_cannot_declare_enum_later PASSED
681 testing/cffi0/test_parsing.py::test_unknown_name PASSED
682 testing/cffi0/test_parsing.py::test_redefine_common_type PASSED
683 testing/cffi0/test_parsing.py::test_bool PASSED
684 testing/cffi0/test_parsing.py::test_unknown_argument_type PASSED
685 testing/cffi0/test_parsing.py::test_void_renamed_as_only_arg PASSED
686 testing/cffi0/test_parsing.py::test_WPARAM_on_windows SKIPPED (Only ...)
687 testing/cffi0/test_parsing.py::test__is_constant_globalvar PASSED
688 testing/cffi0/test_parsing.py::test_restrict PASSED
689 testing/cffi0/test_parsing.py::test_different_const_funcptr_types PASSED
690 testing/cffi0/test_parsing.py::test_const_pointer_to_pointer PASSED
691 testing/cffi0/test_parsing.py::test_enum PASSED
692 testing/cffi0/test_parsing.py::test_stdcall PASSED
693 testing/cffi0/test_parsing.py::test_extern_python PASSED
694 testing/cffi0/test_parsing.py::test_extern_python_group PASSED
695 testing/cffi0/test_parsing.py::test_error_invalid_syntax_for_cdef PASSED
696 testing/cffi0/test_parsing.py::test_unsigned_int_suffix_for_constant PASSED
697 testing/cffi0/test_parsing.py::test_missing_newline_bug PASSED
698 testing/cffi0/test_platform.py::test_not_absolute PASSED
699 testing/cffi0/test_platform.py::test_different_absolute PASSED
700 testing/cffi0/test_platform.py::test_absolute_mapping PASSED
701 testing/cffi0/test_platform.py::test_flatten PASSED
702 testing/cffi0/test_unicode_literals.py::test_cast PASSED
703 testing/cffi0/test_unicode_literals.py::test_new PASSED
704 testing/cffi0/test_unicode_literals.py::test_typeof PASSED
705 testing/cffi0/test_unicode_literals.py::test_sizeof PASSED
706 testing/cffi0/test_unicode_literals.py::test_alignof PASSED
707 testing/cffi0/test_unicode_literals.py::test_getctype PASSED
708 testing/cffi0/test_unicode_literals.py::test_cdef PASSED
709 testing/cffi0/test_unicode_literals.py::test_offsetof PASSED
710 testing/cffi0/test_unicode_literals.py::test_enum PASSED
711 testing/cffi0/test_unicode_literals.py::test_dlopen PASSED
712 testing/cffi0/test_unicode_literals.py::test_verify PASSED
713 testing/cffi0/test_unicode_literals.py::test_callback PASSED
714 testing/cffi0/test_verify.py::test_module_type PASSED
715 testing/cffi0/test_verify.py::test_missing_function PASSED
716 testing/cffi0/test_verify.py::test_missing_function_import_error PASSED
717 testing/cffi0/test_verify.py::test_simple_case PASSED
718 testing/cffi0/test_verify.py::test_Wconversion_unsigned PASSED
719 testing/cffi0/test_verify.py::test_Wconversion_integer PASSED
720 testing/cffi0/test_verify.py::test_Wconversion_floating PASSED
721 testing/cffi0/test_verify.py::test_Wconversion_float2int PASSED
722 testing/cffi0/test_verify.py::test_Wconversion_double2int PASSED
723 testing/cffi0/test_verify.py::test_rounding_1 PASSED
724 testing/cffi0/test_verify.py::test_rounding_2 PASSED
725 testing/cffi0/test_verify.py::test_strlen_exact PASSED
726 testing/cffi0/test_verify.py::test_strlen_approximate PASSED
727 testing/cffi0/test_verify.py::test_return_approximate PASSED
728 testing/cffi0/test_verify.py::test_strlen_array_of_char PASSED
729 testing/cffi0/test_verify.py::test_longdouble PASSED
730 testing/cffi0/test_verify.py::test_longdouble_precision SKIPPED (don...)
731 testing/cffi0/test_verify.py::test_primitive_category PASSED
732 testing/cffi0/test_verify.py::test_all_integer_and_float_types PASSED
733 testing/cffi0/test_verify.py::test_all_complex_types SKIPPED (not im...)
734 testing/cffi0/test_verify.py::test_var_signed_integer_types PASSED
735 testing/cffi0/test_verify.py::test_var_unsigned_integer_types PASSED
736 testing/cffi0/test_verify.py::test_fn_signed_integer_types PASSED
737 testing/cffi0/test_verify.py::test_fn_unsigned_integer_types PASSED
738 testing/cffi0/test_verify.py::test_char_type PASSED
739 testing/cffi0/test_verify.py::test_wchar_type PASSED
740 testing/cffi0/test_verify.py::test_char16_char32_type SKIPPED (XXX t...)
741 testing/cffi0/test_verify.py::test_no_argument PASSED
742 testing/cffi0/test_verify.py::test_two_arguments PASSED
743 testing/cffi0/test_verify.py::test_macro PASSED
744 testing/cffi0/test_verify.py::test_ptr PASSED
745 testing/cffi0/test_verify.py::test_bogus_ptr PASSED
746 testing/cffi0/test_verify.py::test_verify_typedefs SKIPPED (ignored ...)
747 testing/cffi0/test_verify.py::test_nondecl_struct PASSED
748 testing/cffi0/test_verify.py::test_ffi_full_struct PASSED
749 testing/cffi0/test_verify.py::test_ffi_nonfull_struct PASSED
750 testing/cffi0/test_verify.py::test_ffi_nonfull_alignment PASSED
751 testing/cffi0/test_verify.py::test_struct_bad_sized_integer PASSED
752 testing/cffi0/test_verify.py::test_struct_bad_sized_float PASSED
753 testing/cffi0/test_verify.py::test_struct_signedness_ignored PASSED
754 testing/cffi0/test_verify.py::test_struct_float_vs_int PASSED
755 testing/cffi0/test_verify.py::test_struct_array_field PASSED
756 testing/cffi0/test_verify.py::test_struct_array_no_length PASSED
757 testing/cffi0/test_verify.py::test_struct_array_guess_length PASSED
758 testing/cffi0/test_verify.py::test_struct_array_c99_1 PASSED
759 testing/cffi0/test_verify.py::test_struct_array_c99_2 PASSED
760 testing/cffi0/test_verify.py::test_struct_ptr_to_array_field PASSED
761 testing/cffi0/test_verify.py::test_struct_with_bitfield_exact PASSED
762 testing/cffi0/test_verify.py::test_struct_with_bitfield_enum PASSED
763 testing/cffi0/test_verify.py::test_unsupported_struct_with_bitfield_ellipsis PASSED
764 testing/cffi0/test_verify.py::test_global_constants PASSED
765 testing/cffi0/test_verify.py::test_global_const_int_size PASSED
766 testing/cffi0/test_verify.py::test_global_constants_non_int PASSED
767 testing/cffi0/test_verify.py::test_nonfull_enum PASSED
768 testing/cffi0/test_verify.py::test_full_enum PASSED
769 testing/cffi0/test_verify.py::test_enum_usage PASSED
770 testing/cffi0/test_verify.py::test_anonymous_enum PASSED
771 testing/cffi0/test_verify.py::test_nonfull_anonymous_enum PASSED
772 testing/cffi0/test_verify.py::test_nonfull_enum_syntax2 PASSED
773 testing/cffi0/test_verify.py::test_nonfull_enum_bug3 PASSED
774 testing/cffi0/test_verify.py::test_get_set_errno PASSED
775 testing/cffi0/test_verify.py::test_define_int PASSED
776 testing/cffi0/test_verify.py::test_access_variable PASSED
777 testing/cffi0/test_verify.py::test_access_address_of_variable PASSED
778 testing/cffi0/test_verify.py::test_access_array_variable PASSED
779 testing/cffi0/test_verify.py::test_access_array_variable_length_hidden PASSED
780 testing/cffi0/test_verify.py::test_access_struct_variable PASSED
781 testing/cffi0/test_verify.py::test_access_callback PASSED
782 testing/cffi0/test_verify.py::test_access_callback_function_typedef PASSED
783 testing/cffi0/test_verify.py::test_ctypes_backend_forces_generic_engine PASSED
784 testing/cffi0/test_verify.py::test_call_with_struct_ptr PASSED
785 testing/cffi0/test_verify.py::test_unknown_type PASSED
786 testing/cffi0/test_verify.py::test_unknown_type_2 PASSED
787 testing/cffi0/test_verify.py::test_unknown_type_3 PASSED
788 testing/cffi0/test_verify.py::test_varargs PASSED
789 testing/cffi0/test_verify.py::test_varargs_exact PASSED
790 testing/cffi0/test_verify.py::test_varargs_struct PASSED
791 testing/cffi0/test_verify.py::test_autofilled_struct_as_argument PASSED
792 testing/cffi0/test_verify.py::test_autofilled_struct_as_argument_dynamic PASSED
793 testing/cffi0/test_verify.py::test_func_returns_struct PASSED
794 testing/cffi0/test_verify.py::test_func_as_funcptr PASSED
795 testing/cffi0/test_verify.py::test_funcptr_as_argument PASSED
796 testing/cffi0/test_verify.py::test_func_as_argument PASSED
797 testing/cffi0/test_verify.py::test_array_as_argument PASSED
798 testing/cffi0/test_verify.py::test_enum_as_argument PASSED
799 testing/cffi0/test_verify.py::test_enum_as_function_result PASSED
800 testing/cffi0/test_verify.py::test_enum_values PASSED
801 testing/cffi0/test_verify.py::test_typedef_complete_enum PASSED
802 testing/cffi0/test_verify.py::test_typedef_broken_complete_enum PASSED
803 testing/cffi0/test_verify.py::test_typedef_incomplete_enum PASSED
804 testing/cffi0/test_verify.py::test_typedef_enum_as_argument PASSED
805 testing/cffi0/test_verify.py::test_typedef_enum_as_function_result PASSED
806 testing/cffi0/test_verify.py::test_function_typedef PASSED
807 testing/cffi0/test_verify.py::test_opaque_integer_as_function_result PASSED
808 testing/cffi0/test_verify.py::test_return_partial_struct PASSED
809 testing/cffi0/test_verify.py::test_take_and_return_partial_structs PASSED
810 testing/cffi0/test_verify.py::test_cannot_name_struct_type PASSED
811 testing/cffi0/test_verify.py::test_dont_check_unnamable_fields PASSED
812 testing/cffi0/test_verify.py::test_nested_anonymous_struct_exact PASSED
813 testing/cffi0/test_verify.py::test_nested_anonymous_struct_exact_error PASSED
814 testing/cffi0/test_verify.py::test_nested_anonymous_struct_inexact_1 PASSED
815 testing/cffi0/test_verify.py::test_nested_anonymous_struct_inexact_2 PASSED
816 testing/cffi0/test_verify.py::test_ffi_union PASSED
817 testing/cffi0/test_verify.py::test_ffi_union_partial PASSED
818 testing/cffi0/test_verify.py::test_ffi_union_with_partial_struct PASSED
819 testing/cffi0/test_verify.py::test_ffi_union_partial_2 PASSED
820 testing/cffi0/test_verify.py::test_ffi_union_with_partial_struct_2 PASSED
821 testing/cffi0/test_verify.py::test_ffi_struct_packed PASSED
822 testing/cffi0/test_verify.py::test_tmpdir PASSED
823 testing/cffi0/test_verify.py::test_relative_to PASSED
824 testing/cffi0/test_verify.py::test_bug1 PASSED
825 testing/cffi0/test_verify.py::test_bool PASSED
826 testing/cffi0/test_verify.py::test_bool_on_long_double PASSED
827 testing/cffi0/test_verify.py::test_cannot_pass_float PASSED
828 testing/cffi0/test_verify.py::test_cast_from_int_type_to_bool PASSED
829 testing/cffi0/test_verify.py::test_addressof PASSED
830 testing/cffi0/test_verify.py::test_callback_in_thread PASSED
831 testing/cffi0/test_verify.py::test_keepalive_lib PASSED
832 testing/cffi0/test_verify.py::test_keepalive_ffi PASSED
833 testing/cffi0/test_verify.py::test_FILE_stored_in_stdout SKIPPED (li...)
834 testing/cffi0/test_verify.py::test_FILE_stored_explicitly PASSED
835 testing/cffi0/test_verify.py::test_global_array_with_missing_length PASSED
836 testing/cffi0/test_verify.py::test_global_array_with_dotdotdot_length PASSED
837 testing/cffi0/test_verify.py::test_bad_global_array_with_dotdotdot_length PASSED
838 testing/cffi0/test_verify.py::test_struct_containing_struct PASSED
839 testing/cffi0/test_verify.py::test_struct_returned_by_func PASSED
840 testing/cffi0/test_verify.py::test_include PASSED
841 testing/cffi0/test_verify.py::test_include_enum PASSED
842 testing/cffi0/test_verify.py::test_named_pointer_as_argument PASSED
843 testing/cffi0/test_verify.py::test_enum_size PASSED
844 testing/cffi0/test_verify.py::test_enum_bug118 PASSED
845 testing/cffi0/test_verify.py::test_string_to_voidp_arg PASSED
846 testing/cffi0/test_verify.py::test_callback_indirection PASSED
847 testing/cffi0/test_verify.py::test_floatstar_argument PASSED
848 testing/cffi0/test_verify.py::test_charstar_argument PASSED
849 testing/cffi0/test_verify.py::test_passing_string_or_NULL PASSED
850 testing/cffi0/test_verify.py::test_typeof_function PASSED
851 testing/cffi0/test_verify.py::test_call_with_voidstar_arg PASSED
852 testing/cffi0/test_verify.py::test_dir PASSED
853 testing/cffi0/test_verify.py::test_typeof_func_with_struct_argument PASSED
854 testing/cffi0/test_verify.py::test_bug_const_char_ptr_array_1 PASSED
855 testing/cffi0/test_verify.py::test_bug_const_char_ptr_array_2 PASSED
856 testing/cffi0/test_verify.py::test_various_calls_direct PASSED
857 testing/cffi0/test_verify.py::test_various_calls_libffi PASSED
858 testing/cffi0/test_verify.py::test_ptr_to_opaque PASSED
859 testing/cffi0/test_verify.py::test_errno_working_even_with_pypys_jit PASSED
860 testing/cffi0/test_verify.py::test_getlasterror_working_even_with_pypys_jit SKIPPED
861 testing/cffi0/test_verify.py::test_verify_dlopen_flags PASSED
862 testing/cffi0/test_verify.py::test_consider_not_implemented_function_type PASSED
863 testing/cffi0/test_verify.py::test_verify_extra_arguments PASSED
864 testing/cffi0/test_verify.py::test_implicit_unicode_on_windows SKIPPED
865 testing/cffi0/test_verify.py::test_use_local_dir PASSED
866 testing/cffi0/test_verify.py::test_define_known_value PASSED
867 testing/cffi0/test_verify.py::test_define_wrong_value PASSED
868 testing/cffi0/test_verify.py::test_static_const_int_known_value PASSED
869 testing/cffi0/test_verify.py::test_static_const_int_wrong_value PASSED
870 testing/cffi0/test_verify.py::test_const_struct_global PASSED
871 testing/cffi0/test_verify.py::test_dont_support_int_dotdotdot PASSED
872 testing/cffi0/test_verify.py::test_const_fields PASSED
873 testing/cffi0/test_verify.py::test_win32_calling_convention_0 PASSED
874 testing/cffi0/test_verify.py::test_win32_calling_convention_1 PASSED
875 testing/cffi0/test_verify.py::test_win32_calling_convention_2 PASSED
876 testing/cffi0/test_verify.py::test_win32_calling_convention_3 PASSED
877 testing/cffi0/test_verify.py::test_ffi_gc_size_arg SKIPPED (only run...)
878 testing/cffi0/test_verify.py::test_ffi_gc_size_arg_2 SKIPPED (find a...)
879 testing/cffi0/test_verify.py::test_ffi_new_with_cycles SKIPPED (find...)
880 testing/cffi0/test_verify.py::test_arithmetic_in_cdef PASSED
881 testing/cffi0/test_verify.py::test_passing_large_list PASSED
882 testing/cffi0/test_verify2.py::test_module_type PASSED
883 testing/cffi0/test_verify2.py::test_missing_function PASSED
884 testing/cffi0/test_verify2.py::test_missing_function_import_error PASSED
885 testing/cffi0/test_verify2.py::test_simple_case PASSED
886 testing/cffi0/test_verify2.py::test_Wconversion_unsigned PASSED
887 testing/cffi0/test_verify2.py::test_Wconversion_integer PASSED
888 testing/cffi0/test_verify2.py::test_Wconversion_floating PASSED
889 testing/cffi0/test_verify2.py::test_Wconversion_float2int PASSED
890 testing/cffi0/test_verify2.py::test_Wconversion_double2int PASSED
891 testing/cffi0/test_verify2.py::test_rounding_1 PASSED
892 testing/cffi0/test_verify2.py::test_rounding_2 PASSED
893 testing/cffi0/test_verify2.py::test_strlen_exact PASSED
894 testing/cffi0/test_verify2.py::test_strlen_approximate PASSED
895 testing/cffi0/test_verify2.py::test_return_approximate PASSED
896 testing/cffi0/test_verify2.py::test_strlen_array_of_char PASSED
897 testing/cffi0/test_verify2.py::test_longdouble PASSED
898 testing/cffi0/test_verify2.py::test_longdouble_precision SKIPPED (do...)
899 testing/cffi0/test_verify2.py::test_primitive_category PASSED
900 testing/cffi0/test_verify2.py::test_all_integer_and_float_types PASSED
901 testing/cffi0/test_verify2.py::test_all_complex_types SKIPPED (not i...)
902 testing/cffi0/test_verify2.py::test_var_signed_integer_types PASSED
903 testing/cffi0/test_verify2.py::test_var_unsigned_integer_types PASSED
904 testing/cffi0/test_verify2.py::test_fn_signed_integer_types PASSED
905 testing/cffi0/test_verify2.py::test_fn_unsigned_integer_types PASSED
906 testing/cffi0/test_verify2.py::test_char_type PASSED
907 testing/cffi0/test_verify2.py::test_wchar_type PASSED
908 testing/cffi0/test_verify2.py::test_char16_char32_type SKIPPED (XXX ...)
909 testing/cffi0/test_verify2.py::test_no_argument PASSED
910 testing/cffi0/test_verify2.py::test_two_arguments PASSED
911 testing/cffi0/test_verify2.py::test_macro PASSED
912 testing/cffi0/test_verify2.py::test_ptr PASSED
913 testing/cffi0/test_verify2.py::test_bogus_ptr PASSED
914 testing/cffi0/test_verify2.py::test_verify_typedefs SKIPPED (ignored...)
915 testing/cffi0/test_verify2.py::test_nondecl_struct PASSED
916 testing/cffi0/test_verify2.py::test_ffi_full_struct PASSED
917 testing/cffi0/test_verify2.py::test_ffi_nonfull_struct PASSED
918 testing/cffi0/test_verify2.py::test_ffi_nonfull_alignment PASSED
919 testing/cffi0/test_verify2.py::test_struct_bad_sized_integer PASSED
920 testing/cffi0/test_verify2.py::test_struct_bad_sized_float PASSED
921 testing/cffi0/test_verify2.py::test_struct_signedness_ignored PASSED
922 testing/cffi0/test_verify2.py::test_struct_float_vs_int PASSED
923 testing/cffi0/test_verify2.py::test_struct_array_field PASSED
924 testing/cffi0/test_verify2.py::test_struct_array_no_length PASSED
925 testing/cffi0/test_verify2.py::test_struct_array_guess_length PASSED
926 testing/cffi0/test_verify2.py::test_struct_array_c99_1 PASSED
927 testing/cffi0/test_verify2.py::test_struct_array_c99_2 PASSED
928 testing/cffi0/test_verify2.py::test_struct_ptr_to_array_field PASSED
929 testing/cffi0/test_verify2.py::test_struct_with_bitfield_exact PASSED
930 testing/cffi0/test_verify2.py::test_struct_with_bitfield_enum PASSED
931 testing/cffi0/test_verify2.py::test_unsupported_struct_with_bitfield_ellipsis PASSED
932 testing/cffi0/test_verify2.py::test_global_constants PASSED
933 testing/cffi0/test_verify2.py::test_global_const_int_size PASSED
934 testing/cffi0/test_verify2.py::test_global_constants_non_int PASSED
935 testing/cffi0/test_verify2.py::test_nonfull_enum PASSED
936 testing/cffi0/test_verify2.py::test_full_enum PASSED
937 testing/cffi0/test_verify2.py::test_enum_usage PASSED
938 testing/cffi0/test_verify2.py::test_anonymous_enum PASSED
939 testing/cffi0/test_verify2.py::test_nonfull_anonymous_enum PASSED
940 testing/cffi0/test_verify2.py::test_nonfull_enum_syntax2 PASSED
941 testing/cffi0/test_verify2.py::test_nonfull_enum_bug3 PASSED
942 testing/cffi0/test_verify2.py::test_get_set_errno PASSED
943 testing/cffi0/test_verify2.py::test_define_int PASSED
944 testing/cffi0/test_verify2.py::test_access_variable PASSED
945 testing/cffi0/test_verify2.py::test_access_address_of_variable PASSED
946 testing/cffi0/test_verify2.py::test_access_array_variable PASSED
947 testing/cffi0/test_verify2.py::test_access_array_variable_length_hidden PASSED
948 testing/cffi0/test_verify2.py::test_access_struct_variable PASSED
949 testing/cffi0/test_verify2.py::test_access_callback PASSED
950 testing/cffi0/test_verify2.py::test_access_callback_function_typedef PASSED
951 testing/cffi0/test_verify2.py::test_ctypes_backend_forces_generic_engine PASSED
952 testing/cffi0/test_verify2.py::test_call_with_struct_ptr PASSED
953 testing/cffi0/test_verify2.py::test_unknown_type PASSED
954 testing/cffi0/test_verify2.py::test_unknown_type_2 PASSED
955 testing/cffi0/test_verify2.py::test_unknown_type_3 PASSED
956 testing/cffi0/test_verify2.py::test_varargs PASSED
957 testing/cffi0/test_verify2.py::test_varargs_exact PASSED
958 testing/cffi0/test_verify2.py::test_varargs_struct PASSED
959 testing/cffi0/test_verify2.py::test_autofilled_struct_as_argument PASSED
960 testing/cffi0/test_verify2.py::test_autofilled_struct_as_argument_dynamic PASSED
961 testing/cffi0/test_verify2.py::test_func_returns_struct PASSED
962 testing/cffi0/test_verify2.py::test_func_as_funcptr PASSED
963 testing/cffi0/test_verify2.py::test_funcptr_as_argument PASSED
964 testing/cffi0/test_verify2.py::test_func_as_argument PASSED
965 testing/cffi0/test_verify2.py::test_array_as_argument PASSED
966 testing/cffi0/test_verify2.py::test_enum_as_argument PASSED
967 testing/cffi0/test_verify2.py::test_enum_as_function_result PASSED
968 testing/cffi0/test_verify2.py::test_enum_values PASSED
969 testing/cffi0/test_verify2.py::test_typedef_complete_enum PASSED
970 testing/cffi0/test_verify2.py::test_typedef_broken_complete_enum PASSED
971 testing/cffi0/test_verify2.py::test_typedef_incomplete_enum PASSED
972 testing/cffi0/test_verify2.py::test_typedef_enum_as_argument PASSED
973 testing/cffi0/test_verify2.py::test_typedef_enum_as_function_result PASSED
974 testing/cffi0/test_verify2.py::test_function_typedef PASSED
975 testing/cffi0/test_verify2.py::test_opaque_integer_as_function_result PASSED
976 testing/cffi0/test_verify2.py::test_return_partial_struct PASSED
977 testing/cffi0/test_verify2.py::test_take_and_return_partial_structs PASSED
978 testing/cffi0/test_verify2.py::test_cannot_name_struct_type PASSED
979 testing/cffi0/test_verify2.py::test_dont_check_unnamable_fields PASSED
980 testing/cffi0/test_verify2.py::test_nested_anonymous_struct_exact PASSED
981 testing/cffi0/test_verify2.py::test_nested_anonymous_struct_exact_error PASSED
982 testing/cffi0/test_verify2.py::test_nested_anonymous_struct_inexact_1 PASSED
983 testing/cffi0/test_verify2.py::test_nested_anonymous_struct_inexact_2 PASSED
984 testing/cffi0/test_verify2.py::test_ffi_union PASSED
985 testing/cffi0/test_verify2.py::test_ffi_union_partial PASSED
986 testing/cffi0/test_verify2.py::test_ffi_union_with_partial_struct PASSED
987 testing/cffi0/test_verify2.py::test_ffi_union_partial_2 PASSED
988 testing/cffi0/test_verify2.py::test_ffi_union_with_partial_struct_2 PASSED
989 testing/cffi0/test_verify2.py::test_ffi_struct_packed PASSED
990 testing/cffi0/test_verify2.py::test_tmpdir PASSED
991 testing/cffi0/test_verify2.py::test_relative_to PASSED
992 testing/cffi0/test_verify2.py::test_bug1 PASSED
993 testing/cffi0/test_verify2.py::test_bool PASSED
994 testing/cffi0/test_verify2.py::test_bool_on_long_double PASSED
995 testing/cffi0/test_verify2.py::test_cannot_pass_float PASSED
996 testing/cffi0/test_verify2.py::test_cast_from_int_type_to_bool PASSED
997 testing/cffi0/test_verify2.py::test_addressof PASSED
998 testing/cffi0/test_verify2.py::test_callback_in_thread PASSED
999 testing/cffi0/test_verify2.py::test_keepalive_lib PASSED
1000 testing/cffi0/test_verify2.py::test_keepalive_ffi PASSED
1001 testing/cffi0/test_verify2.py::test_FILE_stored_in_stdout SKIPPED (l...)
1002 testing/cffi0/test_verify2.py::test_FILE_stored_explicitly PASSED
1003 testing/cffi0/test_verify2.py::test_global_array_with_missing_length PASSED
1004 testing/cffi0/test_verify2.py::test_global_array_with_dotdotdot_length PASSED
1005 testing/cffi0/test_verify2.py::test_bad_global_array_with_dotdotdot_length PASSED
1006 testing/cffi0/test_verify2.py::test_struct_containing_struct PASSED
1007 testing/cffi0/test_verify2.py::test_struct_returned_by_func PASSED
1008 testing/cffi0/test_verify2.py::test_include PASSED
1009 testing/cffi0/test_verify2.py::test_include_enum PASSED
1010 testing/cffi0/test_verify2.py::test_named_pointer_as_argument PASSED
1011 testing/cffi0/test_verify2.py::test_enum_size PASSED
1012 testing/cffi0/test_verify2.py::test_enum_bug118 PASSED
1013 testing/cffi0/test_verify2.py::test_string_to_voidp_arg PASSED
1014 testing/cffi0/test_verify2.py::test_callback_indirection PASSED
1015 testing/cffi0/test_verify2.py::test_floatstar_argument PASSED
1016 testing/cffi0/test_verify2.py::test_charstar_argument PASSED
1017 testing/cffi0/test_verify2.py::test_passing_string_or_NULL PASSED
1018 testing/cffi0/test_verify2.py::test_typeof_function PASSED
1019 testing/cffi0/test_verify2.py::test_call_with_voidstar_arg PASSED
1020 testing/cffi0/test_verify2.py::test_dir PASSED
1021 testing/cffi0/test_verify2.py::test_typeof_func_with_struct_argument PASSED
1022 testing/cffi0/test_verify2.py::test_bug_const_char_ptr_array_1 PASSED
1023 testing/cffi0/test_verify2.py::test_bug_const_char_ptr_array_2 PASSED
1024 testing/cffi0/test_verify2.py::test_various_calls_direct PASSED
1025 testing/cffi0/test_verify2.py::test_various_calls_libffi PASSED
1026 testing/cffi0/test_verify2.py::test_ptr_to_opaque PASSED
1027 testing/cffi0/test_verify2.py::test_errno_working_even_with_pypys_jit PASSED
1028 testing/cffi0/test_verify2.py::test_getlasterror_working_even_with_pypys_jit SKIPPED
1029 testing/cffi0/test_verify2.py::test_verify_dlopen_flags PASSED
1030 testing/cffi0/test_verify2.py::test_consider_not_implemented_function_type PASSED
1031 testing/cffi0/test_verify2.py::test_verify_extra_arguments PASSED
1032 testing/cffi0/test_verify2.py::test_implicit_unicode_on_windows SKIPPED
1033 testing/cffi0/test_verify2.py::test_use_local_dir PASSED
1034 testing/cffi0/test_verify2.py::test_define_known_value PASSED
1035 testing/cffi0/test_verify2.py::test_define_wrong_value PASSED
1036 testing/cffi0/test_verify2.py::test_static_const_int_known_value PASSED
1037 testing/cffi0/test_verify2.py::test_static_const_int_wrong_value PASSED
1038 testing/cffi0/test_verify2.py::test_const_struct_global PASSED
1039 testing/cffi0/test_verify2.py::test_dont_support_int_dotdotdot PASSED
1040 testing/cffi0/test_verify2.py::test_const_fields PASSED
1041 testing/cffi0/test_verify2.py::test_win32_calling_convention_0 PASSED
1042 testing/cffi0/test_verify2.py::test_win32_calling_convention_1 PASSED
1043 testing/cffi0/test_verify2.py::test_win32_calling_convention_2 PASSED
1044 testing/cffi0/test_verify2.py::test_win32_calling_convention_3 PASSED
1045 testing/cffi0/test_verify2.py::test_ffi_gc_size_arg SKIPPED (only ru...)
1046 testing/cffi0/test_verify2.py::test_ffi_gc_size_arg_2 SKIPPED (find ...)
1047 testing/cffi0/test_verify2.py::test_ffi_new_with_cycles SKIPPED (fin...)
1048 testing/cffi0/test_verify2.py::test_arithmetic_in_cdef PASSED
1049 testing/cffi0/test_verify2.py::test_passing_large_list PASSED
1050 testing/cffi0/test_version.py::test_version PASSED
1051 testing/cffi0/test_version.py::test_doc_version PASSED
1052 testing/cffi0/test_version.py::test_setup_version PASSED
1053 testing/cffi0/test_version.py::test_c_version PASSED
1054 testing/cffi0/test_version.py::test_embedding_h PASSED
1055 testing/cffi0/test_vgen.py::test_module_type PASSED
1056 testing/cffi0/test_vgen.py::test_missing_function PASSED
1057 testing/cffi0/test_vgen.py::test_missing_function_import_error PASSED
1058 testing/cffi0/test_vgen.py::test_simple_case PASSED
1059 testing/cffi0/test_vgen.py::test_Wconversion_unsigned PASSED
1060 testing/cffi0/test_vgen.py::test_Wconversion_integer PASSED
1061 testing/cffi0/test_vgen.py::test_Wconversion_floating PASSED
1062 testing/cffi0/test_vgen.py::test_Wconversion_float2int PASSED
1063 testing/cffi0/test_vgen.py::test_Wconversion_double2int PASSED
1064 testing/cffi0/test_vgen.py::test_rounding_1 PASSED
1065 testing/cffi0/test_vgen.py::test_rounding_2 PASSED
1066 testing/cffi0/test_vgen.py::test_strlen_exact PASSED
1067 testing/cffi0/test_vgen.py::test_strlen_approximate PASSED
1068 testing/cffi0/test_vgen.py::test_return_approximate PASSED
1069 testing/cffi0/test_vgen.py::test_strlen_array_of_char PASSED
1070 testing/cffi0/test_vgen.py::test_longdouble PASSED
1071 testing/cffi0/test_vgen.py::test_longdouble_precision SKIPPED (don't...)
1072 testing/cffi0/test_vgen.py::test_primitive_category PASSED
1073 testing/cffi0/test_vgen.py::test_all_integer_and_float_types PASSED
1074 testing/cffi0/test_vgen.py::test_all_complex_types SKIPPED (not impl...)
1075 testing/cffi0/test_vgen.py::test_var_signed_integer_types PASSED
1076 testing/cffi0/test_vgen.py::test_var_unsigned_integer_types PASSED
1077 testing/cffi0/test_vgen.py::test_fn_signed_integer_types PASSED
1078 testing/cffi0/test_vgen.py::test_fn_unsigned_integer_types PASSED
1079 testing/cffi0/test_vgen.py::test_char_type PASSED
1080 testing/cffi0/test_vgen.py::test_wchar_type PASSED
1081 testing/cffi0/test_vgen.py::test_char16_char32_type SKIPPED (XXX tes...)
1082 testing/cffi0/test_vgen.py::test_no_argument PASSED
1083 testing/cffi0/test_vgen.py::test_two_arguments PASSED
1084 testing/cffi0/test_vgen.py::test_macro PASSED
1085 testing/cffi0/test_vgen.py::test_ptr PASSED
1086 testing/cffi0/test_vgen.py::test_bogus_ptr PASSED
1087 testing/cffi0/test_vgen.py::test_verify_typedefs SKIPPED (ignored so...)
1088 testing/cffi0/test_vgen.py::test_nondecl_struct PASSED
1089 testing/cffi0/test_vgen.py::test_ffi_full_struct PASSED
1090 testing/cffi0/test_vgen.py::test_ffi_nonfull_struct PASSED
1091 testing/cffi0/test_vgen.py::test_ffi_nonfull_alignment PASSED
1092 testing/cffi0/test_vgen.py::test_struct_bad_sized_integer PASSED
1093 testing/cffi0/test_vgen.py::test_struct_bad_sized_float PASSED
1094 testing/cffi0/test_vgen.py::test_struct_signedness_ignored PASSED
1095 testing/cffi0/test_vgen.py::test_struct_float_vs_int PASSED
1096 testing/cffi0/test_vgen.py::test_struct_array_field PASSED
1097 testing/cffi0/test_vgen.py::test_struct_array_no_length PASSED
1098 testing/cffi0/test_vgen.py::test_struct_array_guess_length PASSED
1099 testing/cffi0/test_vgen.py::test_struct_array_c99_1 PASSED
1100 testing/cffi0/test_vgen.py::test_struct_array_c99_2 PASSED
1101 testing/cffi0/test_vgen.py::test_struct_ptr_to_array_field PASSED
1102 testing/cffi0/test_vgen.py::test_struct_with_bitfield_exact PASSED
1103 testing/cffi0/test_vgen.py::test_struct_with_bitfield_enum PASSED
1104 testing/cffi0/test_vgen.py::test_unsupported_struct_with_bitfield_ellipsis PASSED
1105 testing/cffi0/test_vgen.py::test_global_constants PASSED
1106 testing/cffi0/test_vgen.py::test_global_const_int_size PASSED
1107 testing/cffi0/test_vgen.py::test_global_constants_non_int PASSED
1108 testing/cffi0/test_vgen.py::test_nonfull_enum PASSED
1109 testing/cffi0/test_vgen.py::test_full_enum PASSED
1110 testing/cffi0/test_vgen.py::test_enum_usage PASSED
1111 testing/cffi0/test_vgen.py::test_anonymous_enum PASSED
1112 testing/cffi0/test_vgen.py::test_nonfull_anonymous_enum PASSED
1113 testing/cffi0/test_vgen.py::test_nonfull_enum_syntax2 PASSED
1114 testing/cffi0/test_vgen.py::test_nonfull_enum_bug3 PASSED
1115 testing/cffi0/test_vgen.py::test_get_set_errno PASSED
1116 testing/cffi0/test_vgen.py::test_define_int PASSED
1117 testing/cffi0/test_vgen.py::test_access_variable PASSED
1118 testing/cffi0/test_vgen.py::test_access_address_of_variable PASSED
1119 testing/cffi0/test_vgen.py::test_access_array_variable PASSED
1120 testing/cffi0/test_vgen.py::test_access_array_variable_length_hidden PASSED
1121 testing/cffi0/test_vgen.py::test_access_struct_variable PASSED
1122 testing/cffi0/test_vgen.py::test_access_callback PASSED
1123 testing/cffi0/test_vgen.py::test_access_callback_function_typedef PASSED
1124 testing/cffi0/test_vgen.py::test_ctypes_backend_forces_generic_engine PASSED
1125 testing/cffi0/test_vgen.py::test_call_with_struct_ptr PASSED
1126 testing/cffi0/test_vgen.py::test_unknown_type PASSED
1127 testing/cffi0/test_vgen.py::test_unknown_type_2 PASSED
1128 testing/cffi0/test_vgen.py::test_unknown_type_3 PASSED
1129 testing/cffi0/test_vgen.py::test_varargs PASSED
1130 testing/cffi0/test_vgen.py::test_varargs_exact PASSED
1131 testing/cffi0/test_vgen.py::test_varargs_struct PASSED
1132 testing/cffi0/test_vgen.py::test_autofilled_struct_as_argument PASSED
1133 testing/cffi0/test_vgen.py::test_autofilled_struct_as_argument_dynamic PASSED
1134 testing/cffi0/test_vgen.py::test_func_returns_struct PASSED
1135 testing/cffi0/test_vgen.py::test_func_as_funcptr PASSED
1136 testing/cffi0/test_vgen.py::test_funcptr_as_argument PASSED
1137 testing/cffi0/test_vgen.py::test_func_as_argument PASSED
1138 testing/cffi0/test_vgen.py::test_array_as_argument PASSED
1139 testing/cffi0/test_vgen.py::test_enum_as_argument PASSED
1140 testing/cffi0/test_vgen.py::test_enum_as_function_result PASSED
1141 testing/cffi0/test_vgen.py::test_enum_values PASSED
1142 testing/cffi0/test_vgen.py::test_typedef_complete_enum PASSED
1143 testing/cffi0/test_vgen.py::test_typedef_broken_complete_enum PASSED
1144 testing/cffi0/test_vgen.py::test_typedef_incomplete_enum PASSED
1145 testing/cffi0/test_vgen.py::test_typedef_enum_as_argument PASSED
1146 testing/cffi0/test_vgen.py::test_typedef_enum_as_function_result PASSED
1147 testing/cffi0/test_vgen.py::test_function_typedef PASSED
1148 testing/cffi0/test_vgen.py::test_opaque_integer_as_function_result PASSED
1149 testing/cffi0/test_vgen.py::test_return_partial_struct PASSED
1150 testing/cffi0/test_vgen.py::test_take_and_return_partial_structs PASSED
1151 testing/cffi0/test_vgen.py::test_cannot_name_struct_type PASSED
1152 testing/cffi0/test_vgen.py::test_dont_check_unnamable_fields PASSED
1153 testing/cffi0/test_vgen.py::test_nested_anonymous_struct_exact PASSED
1154 testing/cffi0/test_vgen.py::test_nested_anonymous_struct_exact_error PASSED
1155 testing/cffi0/test_vgen.py::test_nested_anonymous_struct_inexact_1 PASSED
1156 testing/cffi0/test_vgen.py::test_nested_anonymous_struct_inexact_2 PASSED
1157 testing/cffi0/test_vgen.py::test_ffi_union PASSED
1158 testing/cffi0/test_vgen.py::test_ffi_union_partial PASSED
1159 testing/cffi0/test_vgen.py::test_ffi_union_with_partial_struct PASSED
1160 testing/cffi0/test_vgen.py::test_ffi_union_partial_2 PASSED
1161 testing/cffi0/test_vgen.py::test_ffi_union_with_partial_struct_2 PASSED
1162 testing/cffi0/test_vgen.py::test_ffi_struct_packed PASSED
1163 testing/cffi0/test_vgen.py::test_tmpdir PASSED
1164 testing/cffi0/test_vgen.py::test_relative_to PASSED
1165 testing/cffi0/test_vgen.py::test_bug1 PASSED
1166 testing/cffi0/test_vgen.py::test_bool PASSED
1167 testing/cffi0/test_vgen.py::test_bool_on_long_double PASSED
1168 testing/cffi0/test_vgen.py::test_cannot_pass_float PASSED
1169 testing/cffi0/test_vgen.py::test_cast_from_int_type_to_bool PASSED
1170 testing/cffi0/test_vgen.py::test_addressof PASSED
1171 testing/cffi0/test_vgen.py::test_callback_in_thread PASSED
1172 testing/cffi0/test_vgen.py::test_keepalive_lib PASSED
1173 testing/cffi0/test_vgen.py::test_keepalive_ffi PASSED
1174 testing/cffi0/test_vgen.py::test_FILE_stored_in_stdout SKIPPED (like...)
1175 testing/cffi0/test_vgen.py::test_FILE_stored_explicitly PASSED
1176 testing/cffi0/test_vgen.py::test_global_array_with_missing_length PASSED
1177 testing/cffi0/test_vgen.py::test_global_array_with_dotdotdot_length PASSED
1178 testing/cffi0/test_vgen.py::test_bad_global_array_with_dotdotdot_length PASSED
1179 testing/cffi0/test_vgen.py::test_struct_containing_struct PASSED
1180 testing/cffi0/test_vgen.py::test_struct_returned_by_func PASSED
1181 testing/cffi0/test_vgen.py::test_include PASSED
1182 testing/cffi0/test_vgen.py::test_include_enum PASSED
1183 testing/cffi0/test_vgen.py::test_named_pointer_as_argument PASSED
1184 testing/cffi0/test_vgen.py::test_enum_size PASSED
1185 testing/cffi0/test_vgen.py::test_enum_bug118 PASSED
1186 testing/cffi0/test_vgen.py::test_string_to_voidp_arg PASSED
1187 testing/cffi0/test_vgen.py::test_callback_indirection PASSED
1188 testing/cffi0/test_vgen.py::test_floatstar_argument PASSED
1189 testing/cffi0/test_vgen.py::test_charstar_argument PASSED
1190 testing/cffi0/test_vgen.py::test_passing_string_or_NULL PASSED
1191 testing/cffi0/test_vgen.py::test_typeof_function PASSED
1192 testing/cffi0/test_vgen.py::test_call_with_voidstar_arg PASSED
1193 testing/cffi0/test_vgen.py::test_dir PASSED
1194 testing/cffi0/test_vgen.py::test_typeof_func_with_struct_argument PASSED
1195 testing/cffi0/test_vgen.py::test_bug_const_char_ptr_array_1 PASSED
1196 testing/cffi0/test_vgen.py::test_bug_const_char_ptr_array_2 PASSED
1197 testing/cffi0/test_vgen.py::test_various_calls_direct PASSED
1198 testing/cffi0/test_vgen.py::test_various_calls_libffi PASSED
1199 testing/cffi0/test_vgen.py::test_ptr_to_opaque PASSED
1200 testing/cffi0/test_vgen.py::test_errno_working_even_with_pypys_jit PASSED
1201 testing/cffi0/test_vgen.py::test_getlasterror_working_even_with_pypys_jit SKIPPED
1202 testing/cffi0/test_vgen.py::test_verify_dlopen_flags PASSED
1203 testing/cffi0/test_vgen.py::test_consider_not_implemented_function_type PASSED
1204 testing/cffi0/test_vgen.py::test_verify_extra_arguments PASSED
1205 testing/cffi0/test_vgen.py::test_implicit_unicode_on_windows SKIPPED
1206 testing/cffi0/test_vgen.py::test_use_local_dir PASSED
1207 testing/cffi0/test_vgen.py::test_define_known_value PASSED
1208 testing/cffi0/test_vgen.py::test_define_wrong_value PASSED
1209 testing/cffi0/test_vgen.py::test_static_const_int_known_value PASSED
1210 testing/cffi0/test_vgen.py::test_static_const_int_wrong_value PASSED
1211 testing/cffi0/test_vgen.py::test_const_struct_global PASSED
1212 testing/cffi0/test_vgen.py::test_dont_support_int_dotdotdot PASSED
1213 testing/cffi0/test_vgen.py::test_const_fields PASSED
1214 testing/cffi0/test_vgen.py::test_win32_calling_convention_0 PASSED
1215 testing/cffi0/test_vgen.py::test_win32_calling_convention_1 PASSED
1216 testing/cffi0/test_vgen.py::test_win32_calling_convention_2 PASSED
1217 testing/cffi0/test_vgen.py::test_win32_calling_convention_3 PASSED
1218 testing/cffi0/test_vgen.py::test_ffi_gc_size_arg SKIPPED (only runni...)
1219 testing/cffi0/test_vgen.py::test_ffi_gc_size_arg_2 SKIPPED (find a w...)
1220 testing/cffi0/test_vgen.py::test_ffi_new_with_cycles SKIPPED (find a...)
1221 testing/cffi0/test_vgen.py::test_arithmetic_in_cdef PASSED
1222 testing/cffi0/test_vgen.py::test_passing_large_list PASSED
1223 testing/cffi0/test_vgen2.py::test_module_type PASSED
1224 testing/cffi0/test_vgen2.py::test_missing_function PASSED
1225 testing/cffi0/test_vgen2.py::test_missing_function_import_error PASSED
1226 testing/cffi0/test_vgen2.py::test_simple_case PASSED
1227 testing/cffi0/test_vgen2.py::test_Wconversion_unsigned PASSED
1228 testing/cffi0/test_vgen2.py::test_Wconversion_integer PASSED
1229 testing/cffi0/test_vgen2.py::test_Wconversion_floating PASSED
1230 testing/cffi0/test_vgen2.py::test_Wconversion_float2int PASSED
1231 testing/cffi0/test_vgen2.py::test_Wconversion_double2int PASSED
1232 testing/cffi0/test_vgen2.py::test_rounding_1 PASSED
1233 testing/cffi0/test_vgen2.py::test_rounding_2 PASSED
1234 testing/cffi0/test_vgen2.py::test_strlen_exact PASSED
1235 testing/cffi0/test_vgen2.py::test_strlen_approximate PASSED
1236 testing/cffi0/test_vgen2.py::test_return_approximate PASSED
1237 testing/cffi0/test_vgen2.py::test_strlen_array_of_char PASSED
1238 testing/cffi0/test_vgen2.py::test_longdouble PASSED
1239 testing/cffi0/test_vgen2.py::test_longdouble_precision SKIPPED (don'...)
1240 testing/cffi0/test_vgen2.py::test_primitive_category PASSED
1241 testing/cffi0/test_vgen2.py::test_all_integer_and_float_types PASSED
1242 testing/cffi0/test_vgen2.py::test_all_complex_types SKIPPED (not imp...)
1243 testing/cffi0/test_vgen2.py::test_var_signed_integer_types PASSED
1244 testing/cffi0/test_vgen2.py::test_var_unsigned_integer_types PASSED
1245 testing/cffi0/test_vgen2.py::test_fn_signed_integer_types PASSED
1246 testing/cffi0/test_vgen2.py::test_fn_unsigned_integer_types PASSED
1247 testing/cffi0/test_vgen2.py::test_char_type PASSED
1248 testing/cffi0/test_vgen2.py::test_wchar_type PASSED
1249 testing/cffi0/test_vgen2.py::test_char16_char32_type SKIPPED (XXX te...)
1250 testing/cffi0/test_vgen2.py::test_no_argument PASSED
1251 testing/cffi0/test_vgen2.py::test_two_arguments PASSED
1252 testing/cffi0/test_vgen2.py::test_macro PASSED
1253 testing/cffi0/test_vgen2.py::test_ptr PASSED
1254 testing/cffi0/test_vgen2.py::test_bogus_ptr PASSED
1255 testing/cffi0/test_vgen2.py::test_verify_typedefs SKIPPED (ignored s...)
1256 testing/cffi0/test_vgen2.py::test_nondecl_struct PASSED
1257 testing/cffi0/test_vgen2.py::test_ffi_full_struct PASSED
1258 testing/cffi0/test_vgen2.py::test_ffi_nonfull_struct PASSED
1259 testing/cffi0/test_vgen2.py::test_ffi_nonfull_alignment PASSED
1260 testing/cffi0/test_vgen2.py::test_struct_bad_sized_integer PASSED
1261 testing/cffi0/test_vgen2.py::test_struct_bad_sized_float PASSED
1262 testing/cffi0/test_vgen2.py::test_struct_signedness_ignored PASSED
1263 testing/cffi0/test_vgen2.py::test_struct_float_vs_int PASSED
1264 testing/cffi0/test_vgen2.py::test_struct_array_field PASSED
1265 testing/cffi0/test_vgen2.py::test_struct_array_no_length PASSED
1266 testing/cffi0/test_vgen2.py::test_struct_array_guess_length PASSED
1267 testing/cffi0/test_vgen2.py::test_struct_array_c99_1 PASSED
1268 testing/cffi0/test_vgen2.py::test_struct_array_c99_2 PASSED
1269 testing/cffi0/test_vgen2.py::test_struct_ptr_to_array_field PASSED
1270 testing/cffi0/test_vgen2.py::test_struct_with_bitfield_exact PASSED
1271 testing/cffi0/test_vgen2.py::test_struct_with_bitfield_enum PASSED
1272 testing/cffi0/test_vgen2.py::test_unsupported_struct_with_bitfield_ellipsis PASSED
1273 testing/cffi0/test_vgen2.py::test_global_constants PASSED
1274 testing/cffi0/test_vgen2.py::test_global_const_int_size PASSED
1275 testing/cffi0/test_vgen2.py::test_global_constants_non_int PASSED
1276 testing/cffi0/test_vgen2.py::test_nonfull_enum PASSED
1277 testing/cffi0/test_vgen2.py::test_full_enum PASSED
1278 testing/cffi0/test_vgen2.py::test_enum_usage PASSED
1279 testing/cffi0/test_vgen2.py::test_anonymous_enum PASSED
1280 testing/cffi0/test_vgen2.py::test_nonfull_anonymous_enum PASSED
1281 testing/cffi0/test_vgen2.py::test_nonfull_enum_syntax2 PASSED
1282 testing/cffi0/test_vgen2.py::test_nonfull_enum_bug3 PASSED
1283 testing/cffi0/test_vgen2.py::test_get_set_errno PASSED
1284 testing/cffi0/test_vgen2.py::test_define_int PASSED
1285 testing/cffi0/test_vgen2.py::test_access_variable PASSED
1286 testing/cffi0/test_vgen2.py::test_access_address_of_variable PASSED
1287 testing/cffi0/test_vgen2.py::test_access_array_variable PASSED
1288 testing/cffi0/test_vgen2.py::test_access_array_variable_length_hidden PASSED
1289 testing/cffi0/test_vgen2.py::test_access_struct_variable PASSED
1290 testing/cffi0/test_vgen2.py::test_access_callback PASSED
1291 testing/cffi0/test_vgen2.py::test_access_callback_function_typedef PASSED
1292 testing/cffi0/test_vgen2.py::test_ctypes_backend_forces_generic_engine PASSED
1293 testing/cffi0/test_vgen2.py::test_call_with_struct_ptr PASSED
1294 testing/cffi0/test_vgen2.py::test_unknown_type PASSED
1295 testing/cffi0/test_vgen2.py::test_unknown_type_2 PASSED
1296 testing/cffi0/test_vgen2.py::test_unknown_type_3 PASSED
1297 testing/cffi0/test_vgen2.py::test_varargs PASSED
1298 testing/cffi0/test_vgen2.py::test_varargs_exact PASSED
1299 testing/cffi0/test_vgen2.py::test_varargs_struct PASSED
1300 testing/cffi0/test_vgen2.py::test_autofilled_struct_as_argument PASSED
1301 testing/cffi0/test_vgen2.py::test_autofilled_struct_as_argument_dynamic PASSED
1302 testing/cffi0/test_vgen2.py::test_func_returns_struct PASSED
1303 testing/cffi0/test_vgen2.py::test_func_as_funcptr PASSED
1304 testing/cffi0/test_vgen2.py::test_funcptr_as_argument PASSED
1305 testing/cffi0/test_vgen2.py::test_func_as_argument PASSED
1306 testing/cffi0/test_vgen2.py::test_array_as_argument PASSED
1307 testing/cffi0/test_vgen2.py::test_enum_as_argument PASSED
1308 testing/cffi0/test_vgen2.py::test_enum_as_function_result PASSED
1309 testing/cffi0/test_vgen2.py::test_enum_values PASSED
1310 testing/cffi0/test_vgen2.py::test_typedef_complete_enum PASSED
1311 testing/cffi0/test_vgen2.py::test_typedef_broken_complete_enum PASSED
1312 testing/cffi0/test_vgen2.py::test_typedef_incomplete_enum PASSED
1313 testing/cffi0/test_vgen2.py::test_typedef_enum_as_argument PASSED
1314 testing/cffi0/test_vgen2.py::test_typedef_enum_as_function_result PASSED
1315 testing/cffi0/test_vgen2.py::test_function_typedef PASSED
1316 testing/cffi0/test_vgen2.py::test_opaque_integer_as_function_result PASSED
1317 testing/cffi0/test_vgen2.py::test_return_partial_struct PASSED
1318 testing/cffi0/test_vgen2.py::test_take_and_return_partial_structs PASSED
1319 testing/cffi0/test_vgen2.py::test_cannot_name_struct_type PASSED
1320 testing/cffi0/test_vgen2.py::test_dont_check_unnamable_fields PASSED
1321 testing/cffi0/test_vgen2.py::test_nested_anonymous_struct_exact PASSED
1322 testing/cffi0/test_vgen2.py::test_nested_anonymous_struct_exact_error PASSED
1323 testing/cffi0/test_vgen2.py::test_nested_anonymous_struct_inexact_1 PASSED
1324 testing/cffi0/test_vgen2.py::test_nested_anonymous_struct_inexact_2 PASSED
1325 testing/cffi0/test_vgen2.py::test_ffi_union PASSED
1326 testing/cffi0/test_vgen2.py::test_ffi_union_partial PASSED
1327 testing/cffi0/test_vgen2.py::test_ffi_union_with_partial_struct PASSED
1328 testing/cffi0/test_vgen2.py::test_ffi_union_partial_2 PASSED
1329 testing/cffi0/test_vgen2.py::test_ffi_union_with_partial_struct_2 PASSED
1330 testing/cffi0/test_vgen2.py::test_ffi_struct_packed PASSED
1331 testing/cffi0/test_vgen2.py::test_tmpdir PASSED
1332 testing/cffi0/test_vgen2.py::test_relative_to PASSED
1333 testing/cffi0/test_vgen2.py::test_bug1 PASSED
1334 testing/cffi0/test_vgen2.py::test_bool PASSED
1335 testing/cffi0/test_vgen2.py::test_bool_on_long_double PASSED
1336 testing/cffi0/test_vgen2.py::test_cannot_pass_float PASSED
1337 testing/cffi0/test_vgen2.py::test_cast_from_int_type_to_bool PASSED
1338 testing/cffi0/test_vgen2.py::test_addressof PASSED
1339 testing/cffi0/test_vgen2.py::test_callback_in_thread PASSED
1340 testing/cffi0/test_vgen2.py::test_keepalive_lib PASSED
1341 testing/cffi0/test_vgen2.py::test_keepalive_ffi PASSED
1342 testing/cffi0/test_vgen2.py::test_FILE_stored_in_stdout SKIPPED (lik...)
1343 testing/cffi0/test_vgen2.py::test_FILE_stored_explicitly PASSED
1344 testing/cffi0/test_vgen2.py::test_global_array_with_missing_length PASSED
1345 testing/cffi0/test_vgen2.py::test_global_array_with_dotdotdot_length PASSED
1346 testing/cffi0/test_vgen2.py::test_bad_global_array_with_dotdotdot_length PASSED
1347 testing/cffi0/test_vgen2.py::test_struct_containing_struct PASSED
1348 testing/cffi0/test_vgen2.py::test_struct_returned_by_func PASSED
1349 testing/cffi0/test_vgen2.py::test_include PASSED
1350 testing/cffi0/test_vgen2.py::test_include_enum PASSED
1351 testing/cffi0/test_vgen2.py::test_named_pointer_as_argument PASSED
1352 testing/cffi0/test_vgen2.py::test_enum_size PASSED
1353 testing/cffi0/test_vgen2.py::test_enum_bug118 PASSED
1354 testing/cffi0/test_vgen2.py::test_string_to_voidp_arg PASSED
1355 testing/cffi0/test_vgen2.py::test_callback_indirection PASSED
1356 testing/cffi0/test_vgen2.py::test_floatstar_argument PASSED
1357 testing/cffi0/test_vgen2.py::test_charstar_argument PASSED
1358 testing/cffi0/test_vgen2.py::test_passing_string_or_NULL PASSED
1359 testing/cffi0/test_vgen2.py::test_typeof_function PASSED
1360 testing/cffi0/test_vgen2.py::test_call_with_voidstar_arg PASSED
1361 testing/cffi0/test_vgen2.py::test_dir PASSED
1362 testing/cffi0/test_vgen2.py::test_typeof_func_with_struct_argument PASSED
1363 testing/cffi0/test_vgen2.py::test_bug_const_char_ptr_array_1 PASSED
1364 testing/cffi0/test_vgen2.py::test_bug_const_char_ptr_array_2 PASSED
1365 testing/cffi0/test_vgen2.py::test_various_calls_direct PASSED
1366 testing/cffi0/test_vgen2.py::test_various_calls_libffi PASSED
1367 testing/cffi0/test_vgen2.py::test_ptr_to_opaque PASSED
1368 testing/cffi0/test_vgen2.py::test_errno_working_even_with_pypys_jit PASSED
1369 testing/cffi0/test_vgen2.py::test_getlasterror_working_even_with_pypys_jit SKIPPED
1370 testing/cffi0/test_vgen2.py::test_verify_dlopen_flags PASSED
1371 testing/cffi0/test_vgen2.py::test_consider_not_implemented_function_type PASSED
1372 testing/cffi0/test_vgen2.py::test_verify_extra_arguments PASSED
1373 testing/cffi0/test_vgen2.py::test_implicit_unicode_on_windows SKIPPED
1374 testing/cffi0/test_vgen2.py::test_use_local_dir PASSED
1375 testing/cffi0/test_vgen2.py::test_define_known_value PASSED
1376 testing/cffi0/test_vgen2.py::test_define_wrong_value PASSED
1377 testing/cffi0/test_vgen2.py::test_static_const_int_known_value PASSED
1378 testing/cffi0/test_vgen2.py::test_static_const_int_wrong_value PASSED
1379 testing/cffi0/test_vgen2.py::test_const_struct_global PASSED
1380 testing/cffi0/test_vgen2.py::test_dont_support_int_dotdotdot PASSED
1381 testing/cffi0/test_vgen2.py::test_const_fields PASSED
1382 testing/cffi0/test_vgen2.py::test_win32_calling_convention_0 PASSED
1383 testing/cffi0/test_vgen2.py::test_win32_calling_convention_1 PASSED
1384 testing/cffi0/test_vgen2.py::test_win32_calling_convention_2 PASSED
1385 testing/cffi0/test_vgen2.py::test_win32_calling_convention_3 PASSED
1386 testing/cffi0/test_vgen2.py::test_ffi_gc_size_arg SKIPPED (only runn...)
1387 testing/cffi0/test_vgen2.py::test_ffi_gc_size_arg_2 SKIPPED (find a ...)
1388 testing/cffi0/test_vgen2.py::test_ffi_new_with_cycles SKIPPED (find ...)
1389 testing/cffi0/test_vgen2.py::test_arithmetic_in_cdef PASSED
1390 testing/cffi0/test_vgen2.py::test_passing_large_list PASSED
1391 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_locate_engine_class PASSED
1392 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_write_source PASSED
1393 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_write_source_explicit_filename PASSED
1394 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_write_source_to_file_obj PASSED
1395 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_compile_module PASSED
1396 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_compile_module_explicit_filename PASSED
1397 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_name_from_checksum_of_cdef PASSED
1398 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_name_from_checksum_of_csrc PASSED
1399 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_load_library PASSED
1400 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_verifier_args PASSED
1401 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_verifier_object_from_ffi PASSED
1402 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_extension_object PASSED
1403 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_extension_forces_write_source PASSED
1404 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_extension_object_extra_sources PASSED
1405 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_install_and_reload_module PASSED
1406 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_install_and_reload_module_package PASSED
1407 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_install_and_reload_module_ext_package_not_found PASSED
1408 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_tag PASSED
1409 testing/cffi0/test_zdistutils.py::TestDistUtilsCPython::test_modulename PASSED
1410 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_locate_engine_class PASSED
1411 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_write_source PASSED
1412 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_write_source_explicit_filename PASSED
1413 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_write_source_to_file_obj PASSED
1414 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_compile_module PASSED
1415 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_compile_module_explicit_filename PASSED
1416 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_name_from_checksum_of_cdef PASSED
1417 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_name_from_checksum_of_csrc PASSED
1418 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_load_library PASSED
1419 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_verifier_args PASSED
1420 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_verifier_object_from_ffi PASSED
1421 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_extension_object PASSED
1422 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_extension_forces_write_source PASSED
1423 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_extension_object_extra_sources PASSED
1424 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_install_and_reload_module PASSED
1425 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_install_and_reload_module_package PASSED
1426 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_install_and_reload_module_ext_package_not_found PASSED
1427 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_tag PASSED
1428 testing/cffi0/test_zdistutils.py::TestDistUtilsGeneric::test_modulename PASSED
1429 testing/cffi0/test_zintegration.py::TestZIntegration::test_infrastructure PASSED
1430 testing/cffi0/test_zintegration.py::TestZIntegration::test_distutils_module PASSED
1431 testing/cffi0/test_zintegration.py::TestZIntegration::test_distutils_package_1 PASSED
1432 testing/cffi0/test_zintegration.py::TestZIntegration::test_distutils_package_2 PASSED
1433 testing/cffi0/test_zintegration.py::TestZIntegration::test_setuptools_module PASSED
1434 testing/cffi0/test_zintegration.py::TestZIntegration::test_setuptools_package_1 PASSED
1435 testing/cffi0/test_zintegration.py::TestZIntegration::test_setuptools_package_2 PASSED
1436 testing/cffi0/test_zintegration.py::TestZIntegration::test_set_py_limited_api PASSED
1437 testing/cffi1/test_cffi_binary.py::test_no_unknown_exported_symbols SKIPPED
1438 testing/cffi1/test_commontypes.py::test_alphabetical_order PASSED
1439 testing/cffi1/test_commontypes.py::test_dependencies PASSED
1440 testing/cffi1/test_commontypes.py::test_get_common_types PASSED
1441 testing/cffi1/test_dlopen.py::test_simple PASSED
1442 testing/cffi1/test_dlopen.py::test_global_constant PASSED
1443 testing/cffi1/test_dlopen.py::test_invalid_global_constant_3 PASSED
1444 testing/cffi1/test_dlopen.py::test_invalid_dotdotdot_in_macro PASSED
1445 testing/cffi1/test_dlopen.py::test_typename PASSED
1446 testing/cffi1/test_dlopen.py::test_enum PASSED
1447 testing/cffi1/test_dlopen.py::test_struct PASSED
1448 testing/cffi1/test_dlopen.py::test_include PASSED
1449 testing/cffi1/test_dlopen.py::test_negative_constant PASSED
1450 testing/cffi1/test_dlopen.py::test_struct_included PASSED
1451 testing/cffi1/test_dlopen.py::test_no_cross_include PASSED
1452 testing/cffi1/test_dlopen.py::test_array PASSED
1453 testing/cffi1/test_dlopen.py::test_array_overflow PASSED
1454 testing/cffi1/test_dlopen.py::test_global_var PASSED
1455 testing/cffi1/test_dlopen.py::test_bitfield PASSED
1456 testing/cffi1/test_dlopen_unicode_literals.py::test_simple PASSED
1457 testing/cffi1/test_dlopen_unicode_literals.py::test_global_constant PASSED
1458 testing/cffi1/test_dlopen_unicode_literals.py::test_invalid_global_constant_3 PASSED
1459 testing/cffi1/test_dlopen_unicode_literals.py::test_invalid_dotdotdot_in_macro PASSED
1460 testing/cffi1/test_dlopen_unicode_literals.py::test_typename PASSED
1461 testing/cffi1/test_dlopen_unicode_literals.py::test_enum PASSED
1462 testing/cffi1/test_dlopen_unicode_literals.py::test_struct PASSED
1463 testing/cffi1/test_dlopen_unicode_literals.py::test_include PASSED
1464 testing/cffi1/test_dlopen_unicode_literals.py::test_negative_constant PASSED
1465 testing/cffi1/test_dlopen_unicode_literals.py::test_struct_included PASSED
1466 testing/cffi1/test_dlopen_unicode_literals.py::test_no_cross_include PASSED
1467 testing/cffi1/test_dlopen_unicode_literals.py::test_array PASSED
1468 testing/cffi1/test_dlopen_unicode_literals.py::test_array_overflow PASSED
1469 testing/cffi1/test_dlopen_unicode_literals.py::test_global_var PASSED
1470 testing/cffi1/test_dlopen_unicode_literals.py::test_bitfield PASSED
1471 testing/cffi1/test_ffi_obj.py::test_ffi_new PASSED
1472 testing/cffi1/test_ffi_obj.py::test_ffi_subclass PASSED
1473 testing/cffi1/test_ffi_obj.py::test_ffi_no_argument PASSED
1474 testing/cffi1/test_ffi_obj.py::test_ffi_cache_type PASSED
1475 testing/cffi1/test_ffi_obj.py::test_ffi_type_not_immortal PASSED
1476 testing/cffi1/test_ffi_obj.py::test_ffi_cache_type_globally PASSED
1477 testing/cffi1/test_ffi_obj.py::test_ffi_invalid PASSED
1478 testing/cffi1/test_ffi_obj.py::test_ffi_docstrings PASSED
1479 testing/cffi1/test_ffi_obj.py::test_ffi_NULL PASSED
1480 testing/cffi1/test_ffi_obj.py::test_ffi_no_attr PASSED
1481 testing/cffi1/test_ffi_obj.py::test_ffi_string PASSED
1482 testing/cffi1/test_ffi_obj.py::test_ffi_errno PASSED
1483 testing/cffi1/test_ffi_obj.py::test_ffi_alignof PASSED
1484 testing/cffi1/test_ffi_obj.py::test_ffi_sizeof PASSED
1485 testing/cffi1/test_ffi_obj.py::test_ffi_callback PASSED
1486 testing/cffi1/test_ffi_obj.py::test_ffi_callback_decorator PASSED
1487 testing/cffi1/test_ffi_obj.py::test_ffi_callback_onerror PASSED
1488 testing/cffi1/test_ffi_obj.py::test_ffi_getctype PASSED
1489 testing/cffi1/test_ffi_obj.py::test_addressof PASSED
1490 testing/cffi1/test_ffi_obj.py::test_handle PASSED
1491 testing/cffi1/test_ffi_obj.py::test_handle_unique PASSED
1492 testing/cffi1/test_ffi_obj.py::test_ffi_cast PASSED
1493 testing/cffi1/test_ffi_obj.py::test_ffi_invalid_type PASSED
1494 testing/cffi1/test_ffi_obj.py::test_ffi_buffer PASSED
1495 testing/cffi1/test_ffi_obj.py::test_ffi_from_buffer PASSED
1496 testing/cffi1/test_ffi_obj.py::test_memmove PASSED
1497 testing/cffi1/test_ffi_obj.py::test_memmove_buffer PASSED
1498 testing/cffi1/test_ffi_obj.py::test_memmove_readonly_readwrite PASSED
1499 testing/cffi1/test_ffi_obj.py::test_ffi_types PASSED
1500 testing/cffi1/test_ffi_obj.py::test_ffi_getwinerror SKIPPED (for win...)
1501 testing/cffi1/test_ffi_obj.py::test_ffi_new_allocator_1 PASSED
1502 testing/cffi1/test_ffi_obj.py::test_ffi_new_allocator_2 PASSED
1503 testing/cffi1/test_ffi_obj.py::test_ffi_new_allocator_3 PASSED
1504 testing/cffi1/test_ffi_obj.py::test_ffi_new_allocator_4 PASSED
1505 testing/cffi1/test_ffi_obj.py::test_bool_issue228 PASSED
1506 testing/cffi1/test_ffi_obj.py::test_FILE_issue228 PASSED
1507 testing/cffi1/test_ffi_obj.py::test_cast_from_int_type_to_bool PASSED
1508 testing/cffi1/test_ffi_obj.py::test_init_once PASSED
1509 testing/cffi1/test_ffi_obj.py::test_init_once_multithread PASSED
1510 testing/cffi1/test_ffi_obj.py::test_init_once_failure PASSED
1511 testing/cffi1/test_ffi_obj.py::test_init_once_multithread_failure PASSED
1512 testing/cffi1/test_ffi_obj.py::test_unpack PASSED
1513 testing/cffi1/test_ffi_obj.py::test_negative_array_size PASSED
1514 testing/cffi1/test_function_args.py::test_types SKIPPED (this test i...)
1515 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_integer_ranges PASSED
1516 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_fixedsize_int PASSED
1517 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_new_unsupported_type PASSED
1518 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_new_single_integer PASSED
1519 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_new_array_no_arg PASSED
1520 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_array_indexing PASSED
1521 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_new_array_args PASSED
1522 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_new_array_varsize PASSED
1523 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_pointer_init PASSED
1524 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_cannot_cast PASSED
1525 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_new_pointer_to_array PASSED
1526 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_pointer_direct PASSED
1527 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_repr PASSED
1528 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_new_array_of_array PASSED
1529 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_constructor_array_of_array PASSED
1530 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_new_array_of_pointer_1 PASSED
1531 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_new_array_of_pointer_2 PASSED
1532 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_char PASSED
1533 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_wchar_t PASSED
1534 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_none_as_null_doesnt_work PASSED
1535 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_float PASSED
1536 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_struct_simple PASSED
1537 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_constructor_struct_from_dict PASSED
1538 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_struct_pointer PASSED
1539 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_struct_opaque PASSED
1540 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_pointer_to_struct PASSED
1541 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_constructor_struct_of_array PASSED
1542 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_recursive_struct PASSED
1543 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_union_simple PASSED
1544 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_union_opaque PASSED
1545 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_union_initializer PASSED
1546 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_sizeof_type PASSED
1547 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_sizeof_cdata PASSED
1548 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_string_from_char_pointer PASSED
1549 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_unicode_from_wchar_pointer PASSED
1550 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_string_from_char_array PASSED
1551 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_string_from_wchar_array PASSED
1552 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_fetch_const_char_p_field PASSED
1553 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_fetch_const_wchar_p_field PASSED
1554 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_voidp PASSED
1555 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_functionptr_simple PASSED
1556 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_functionptr_advanced PASSED
1557 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_functionptr_voidptr_return PASSED
1558 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_functionptr_intptr_return PASSED
1559 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_functionptr_void_return PASSED
1560 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_char_cast PASSED
1561 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_wchar_cast PASSED
1562 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_cast_array_to_charp PASSED
1563 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_cast_between_pointers PASSED
1564 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_cast_pointer_and_int PASSED
1565 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_cast_functionptr_and_int PASSED
1566 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_callback_crash PASSED
1567 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_structptr_argument PASSED
1568 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_array_argument_as_list PASSED
1569 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_cast_float PASSED
1570 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_enum PASSED
1571 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_enum_in_struct PASSED
1572 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_enum_non_contiguous PASSED
1573 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_enum_char_hex_oct PASSED
1574 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_array_of_struct PASSED
1575 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_pointer_to_array PASSED
1576 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_iterate_array PASSED
1577 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_offsetof PASSED
1578 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_offsetof_nested PASSED
1579 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_offsetof_array PASSED
1580 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_alignof PASSED
1581 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_bitfield PASSED
1582 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_bitfield_enum PASSED
1583 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_anonymous_struct PASSED
1584 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_struct_with_two_usages PASSED
1585 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_pointer_arithmetic PASSED
1586 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_pointer_comparison PASSED
1587 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_integer_comparison PASSED
1588 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_ffi_buffer_ptr PASSED
1589 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_ffi_buffer_array PASSED
1590 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_ffi_buffer_ptr_size PASSED
1591 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_ffi_buffer_array_size PASSED
1592 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_ffi_buffer_with_file PASSED
1593 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_ffi_buffer_with_io PASSED
1594 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_array_in_struct PASSED
1595 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_struct_containing_array_varsize_workaround PASSED
1596 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_new_struct_containing_array_varsize SKIPPED
1597 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_ffi_typeof_getcname PASSED
1598 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_array_of_func_ptr PASSED
1599 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_callback_as_function_argument PASSED
1600 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_vararg_callback SKIPPED
1601 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_callback_decorator PASSED
1602 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_anonymous_enum PASSED
1603 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_new_ctype PASSED
1604 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_enum_with_non_injective_mapping PASSED
1605 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_enum_refer_previous_enum_value PASSED
1606 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_nested_anonymous_struct PASSED
1607 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_nested_field_offset_align PASSED
1608 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_nested_anonymous_union PASSED
1609 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_cast_to_array_type PASSED
1610 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_gc PASSED
1611 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_gc_2 PASSED
1612 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_gc_3 PASSED
1613 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_gc_4 PASSED
1614 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_release PASSED
1615 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_release_new_allocator PASSED
1616 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_CData_CType PASSED
1617 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_CData_CType_2 PASSED
1618 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_bool PASSED
1619 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_addressof PASSED
1620 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_addressof_field PASSED
1621 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_addressof_field_nested PASSED
1622 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_addressof_anonymous_struct PASSED
1623 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_addressof_array PASSED
1624 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_addressof_pointer PASSED
1625 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_addressof_array_in_struct PASSED
1626 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_multiple_independent_structs PASSED
1627 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_include_struct_union_enum_typedef PASSED
1628 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_struct_packed PASSED
1629 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_not_supported_bitfield_in_result PASSED
1630 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_inspecttype PASSED
1631 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_new_handle PASSED
1632 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_struct_array_no_length PASSED
1633 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_all_primitives PASSED
1634 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_emit_c_code PASSED
1635 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_emit_c_code_to_file_obj PASSED
1636 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_import_from_lib PASSED
1637 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_char16_t PASSED
1638 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_char32_t PASSED
1639 testing/cffi1/test_parse_c_type.py::test_simple PASSED
1640 testing/cffi1/test_parse_c_type.py::test_array PASSED
1641 testing/cffi1/test_parse_c_type.py::test_pointer PASSED
1642 testing/cffi1/test_parse_c_type.py::test_grouping PASSED
1643 testing/cffi1/test_parse_c_type.py::test_simple_function PASSED
1644 testing/cffi1/test_parse_c_type.py::test_internal_function PASSED
1645 testing/cffi1/test_parse_c_type.py::test_fix_arg_types PASSED
1646 testing/cffi1/test_parse_c_type.py::test_enum PASSED
1647 testing/cffi1/test_parse_c_type.py::test_error PASSED
1648 testing/cffi1/test_parse_c_type.py::test_number_too_large PASSED
1649 testing/cffi1/test_parse_c_type.py::test_complexity_limit PASSED
1650 testing/cffi1/test_parse_c_type.py::test_struct PASSED
1651 testing/cffi1/test_parse_c_type.py::test_exchanging_struct_union PASSED
1652 testing/cffi1/test_parse_c_type.py::test_identifier PASSED
1653 testing/cffi1/test_parse_c_type.py::test_cffi_opcode_sync PASSED
1654 testing/cffi1/test_parse_c_type.py::test_array_length_from_constant PASSED
1655 testing/cffi1/test_parse_c_type.py::test_various_constant_exprs PASSED
1656 testing/cffi1/test_parse_c_type.py::test_stdcall_cdecl PASSED
1657 testing/cffi1/test_pkgconfig.py::test_merge_flags PASSED
1658 testing/cffi1/test_pkgconfig.py::test_pkgconfig PASSED
1659 testing/cffi1/test_pkgconfig.py::test_call PASSED
1660 testing/cffi1/test_re_python.py::test_constant PASSED
1661 testing/cffi1/test_re_python.py::test_large_constant PASSED
1662 testing/cffi1/test_re_python.py::test_function PASSED
1663 testing/cffi1/test_re_python.py::test_function_with_varargs PASSED
1664 testing/cffi1/test_re_python.py::test_dlopen_none PASSED
1665 testing/cffi1/test_re_python.py::test_dlclose PASSED
1666 testing/cffi1/test_re_python.py::test_constant_via_lib PASSED
1667 testing/cffi1/test_re_python.py::test_opaque_struct PASSED
1668 testing/cffi1/test_re_python.py::test_nonopaque_struct PASSED
1669 testing/cffi1/test_re_python.py::test_enum PASSED
1670 testing/cffi1/test_re_python.py::test_include_1 PASSED
1671 testing/cffi1/test_re_python.py::test_global_var PASSED
1672 testing/cffi1/test_re_python.py::test_global_const_int PASSED
1673 testing/cffi1/test_re_python.py::test_global_const_nonint PASSED
1674 testing/cffi1/test_re_python.py::test_rtld_constants PASSED
1675 testing/cffi1/test_re_python.py::test_no_such_function_or_global_var PASSED
1676 testing/cffi1/test_re_python.py::test_check_version PASSED
1677 testing/cffi1/test_re_python.py::test_partial_enum PASSED
1678 testing/cffi1/test_re_python.py::test_anonymous_union_inside_struct PASSED
1679 testing/cffi1/test_re_python.py::test_selfref PASSED
1680 testing/cffi1/test_re_python.py::test_dlopen_handle PASSED
1681 testing/cffi1/test_realize_c_type.py::test_void PASSED
1682 testing/cffi1/test_realize_c_type.py::test_int_star PASSED
1683 testing/cffi1/test_realize_c_type.py::test_noop PASSED
1684 testing/cffi1/test_realize_c_type.py::test_array PASSED
1685 testing/cffi1/test_realize_c_type.py::test_funcptr PASSED
1686 testing/cffi1/test_realize_c_type.py::test_funcptr_rewrite_args PASSED
1687 testing/cffi1/test_realize_c_type.py::test_all_primitives PASSED
1688 testing/cffi1/test_realize_c_type.py::test_funcptr_stdcall PASSED
1689 testing/cffi1/test_realize_c_type.py::test_variadic_overrides_stdcall PASSED
1690 testing/cffi1/test_recompiler.py::test_set_source_no_slashes PASSED
1691 testing/cffi1/test_recompiler.py::test_type_table_func PASSED
1692 testing/cffi1/test_recompiler.py::test_type_table_use_noop_for_repeated_args PASSED
1693 testing/cffi1/test_recompiler.py::test_type_table_dont_use_noop_for_primitives PASSED
1694 testing/cffi1/test_recompiler.py::test_type_table_funcptr_as_argument PASSED
1695 testing/cffi1/test_recompiler.py::test_type_table_variadic_function PASSED
1696 testing/cffi1/test_recompiler.py::test_type_table_array PASSED
1697 testing/cffi1/test_recompiler.py::test_type_table_typedef PASSED
1698 testing/cffi1/test_recompiler.py::test_type_table_prebuilt_type PASSED
1699 testing/cffi1/test_recompiler.py::test_type_table_struct_opaque PASSED
1700 testing/cffi1/test_recompiler.py::test_type_table_struct PASSED
1701 testing/cffi1/test_recompiler.py::test_type_table_union PASSED
1702 testing/cffi1/test_recompiler.py::test_type_table_struct_used PASSED
1703 testing/cffi1/test_recompiler.py::test_type_table_anonymous_struct_with_typedef PASSED
1704 testing/cffi1/test_recompiler.py::test_type_table_enum PASSED
1705 testing/cffi1/test_recompiler.py::test_type_table_include_1 PASSED
1706 testing/cffi1/test_recompiler.py::test_type_table_include_2 PASSED
1707 testing/cffi1/test_recompiler.py::test_math_sin PASSED
1708 testing/cffi1/test_recompiler.py::test_repr_lib PASSED
1709 testing/cffi1/test_recompiler.py::test_funcarg_ptr PASSED
1710 testing/cffi1/test_recompiler.py::test_funcres_ptr PASSED
1711 testing/cffi1/test_recompiler.py::test_global_var_array PASSED
1712 testing/cffi1/test_recompiler.py::test_verify_typedef PASSED
1713 testing/cffi1/test_recompiler.py::test_verify_typedef_dotdotdot PASSED
1714 testing/cffi1/test_recompiler.py::test_verify_typedef_star_dotdotdot PASSED
1715 testing/cffi1/test_recompiler.py::test_global_var_int PASSED
1716 testing/cffi1/test_recompiler.py::test_macro PASSED
1717 testing/cffi1/test_recompiler.py::test_macro_check_value PASSED
1718 testing/cffi1/test_recompiler.py::test_constant PASSED
1719 testing/cffi1/test_recompiler.py::test_check_value_of_static_const PASSED
1720 testing/cffi1/test_recompiler.py::test_constant_nonint PASSED
1721 testing/cffi1/test_recompiler.py::test_constant_ptr PASSED
1722 testing/cffi1/test_recompiler.py::test_dir PASSED
1723 testing/cffi1/test_recompiler.py::test_verify_opaque_struct PASSED
1724 testing/cffi1/test_recompiler.py::test_verify_opaque_union PASSED
1725 testing/cffi1/test_recompiler.py::test_verify_struct PASSED
1726 testing/cffi1/test_recompiler.py::test_verify_exact_field_offset PASSED
1727 testing/cffi1/test_recompiler.py::test_type_caching PASSED
1728 testing/cffi1/test_recompiler.py::test_verify_enum PASSED
1729 testing/cffi1/test_recompiler.py::test_duplicate_enum PASSED
1730 testing/cffi1/test_recompiler.py::test_dotdotdot_length_of_array_field PASSED
1731 testing/cffi1/test_recompiler.py::test_dotdotdot_global_array PASSED
1732 testing/cffi1/test_recompiler.py::test_misdeclared_field_1 PASSED
1733 testing/cffi1/test_recompiler.py::test_open_array_in_struct PASSED
1734 testing/cffi1/test_recompiler.py::test_math_sin_type PASSED
1735 testing/cffi1/test_recompiler.py::test_verify_anonymous_struct_with_typedef PASSED
1736 testing/cffi1/test_recompiler.py::test_verify_anonymous_struct_with_star_typedef PASSED
1737 testing/cffi1/test_recompiler.py::test_verify_anonymous_enum_with_typedef PASSED
1738 testing/cffi1/test_recompiler.py::test_unique_types PASSED
1739 testing/cffi1/test_recompiler.py::test_module_name_in_package PASSED
1740 testing/cffi1/test_recompiler.py::test_bad_size_of_global_1 PASSED
1741 testing/cffi1/test_recompiler.py::test_bad_size_of_global_2 PASSED
1742 testing/cffi1/test_recompiler.py::test_unspecified_size_of_global_1 PASSED
1743 testing/cffi1/test_recompiler.py::test_unspecified_size_of_global_2 PASSED
1744 testing/cffi1/test_recompiler.py::test_unspecified_size_of_global_3 PASSED
1745 testing/cffi1/test_recompiler.py::test_unspecified_size_of_global_4 PASSED
1746 testing/cffi1/test_recompiler.py::test_include_1 PASSED
1747 testing/cffi1/test_recompiler.py::test_include_1b PASSED
1748 testing/cffi1/test_recompiler.py::test_include_2 PASSED
1749 testing/cffi1/test_recompiler.py::test_include_3 PASSED
1750 testing/cffi1/test_recompiler.py::test_include_4 PASSED
1751 testing/cffi1/test_recompiler.py::test_include_5 PASSED
1752 testing/cffi1/test_recompiler.py::test_include_6 PASSED
1753 testing/cffi1/test_recompiler.py::test_include_7 PASSED
1754 testing/cffi1/test_recompiler.py::test_include_8 PASSED
1755 testing/cffi1/test_recompiler.py::test_unicode_libraries SKIPPED (fo...)
1756 testing/cffi1/test_recompiler.py::test_incomplete_struct_as_arg PASSED
1757 testing/cffi1/test_recompiler.py::test_incomplete_struct_as_result PASSED
1758 testing/cffi1/test_recompiler.py::test_incomplete_struct_as_both PASSED
1759 testing/cffi1/test_recompiler.py::test_name_of_unnamed_struct PASSED
1760 testing/cffi1/test_recompiler.py::test_address_of_global_var PASSED
1761 testing/cffi1/test_recompiler.py::test_defines__CFFI_ PASSED
1762 testing/cffi1/test_recompiler.py::test_unpack_args PASSED
1763 testing/cffi1/test_recompiler.py::test_address_of_function PASSED
1764 testing/cffi1/test_recompiler.py::test_address_of_function_with_struct PASSED
1765 testing/cffi1/test_recompiler.py::test_issue198 PASSED
1766 testing/cffi1/test_recompiler.py::test_constant_is_not_a_compiler_constant PASSED
1767 testing/cffi1/test_recompiler.py::test_constant_of_unknown_size PASSED
1768 testing/cffi1/test_recompiler.py::test_variable_of_unknown_size PASSED
1769 testing/cffi1/test_recompiler.py::test_constant_of_value_unknown_to_the_compiler PASSED
1770 testing/cffi1/test_recompiler.py::test_dotdot_in_source_file_names PASSED
1771 testing/cffi1/test_recompiler.py::test_call_with_incomplete_structs PASSED
1772 testing/cffi1/test_recompiler.py::test_struct_array_guess_length_2 PASSED
1773 testing/cffi1/test_recompiler.py::test_struct_array_guess_length_3 PASSED
1774 testing/cffi1/test_recompiler.py::test_global_var_array_2 PASSED
1775 testing/cffi1/test_recompiler.py::test_global_var_array_3 PASSED
1776 testing/cffi1/test_recompiler.py::test_global_var_array_4 PASSED
1777 testing/cffi1/test_recompiler.py::test_some_integer_type PASSED
1778 testing/cffi1/test_recompiler.py::test_some_float_type PASSED
1779 testing/cffi1/test_recompiler.py::test_some_float_invalid_1 PASSED
1780 testing/cffi1/test_recompiler.py::test_some_float_invalid_2 PASSED
1781 testing/cffi1/test_recompiler.py::test_some_float_invalid_3 PASSED
1782 testing/cffi1/test_recompiler.py::test_issue200 PASSED
1783 testing/cffi1/test_recompiler.py::test_alignment_of_longlong PASSED
1784 testing/cffi1/test_recompiler.py::test_import_from_lib PASSED
1785 testing/cffi1/test_recompiler.py::test_macro_var_callback PASSED
1786 testing/cffi1/test_recompiler.py::test_const_fields PASSED
1787 testing/cffi1/test_recompiler.py::test_restrict_fields PASSED
1788 testing/cffi1/test_recompiler.py::test_volatile_fields PASSED
1789 testing/cffi1/test_recompiler.py::test_const_array_fields PASSED
1790 testing/cffi1/test_recompiler.py::test_const_array_fields_varlength PASSED
1791 testing/cffi1/test_recompiler.py::test_const_array_fields_unknownlength PASSED
1792 testing/cffi1/test_recompiler.py::test_const_function_args PASSED
1793 testing/cffi1/test_recompiler.py::test_const_function_type_args PASSED
1794 testing/cffi1/test_recompiler.py::test_const_constant PASSED
1795 testing/cffi1/test_recompiler.py::test_const_via_typedef PASSED
1796 testing/cffi1/test_recompiler.py::test_win32_calling_convention_0 PASSED
1797 testing/cffi1/test_recompiler.py::test_win32_calling_convention_1 PASSED
1798 testing/cffi1/test_recompiler.py::test_win32_calling_convention_2 PASSED
1799 testing/cffi1/test_recompiler.py::test_win32_calling_convention_3 PASSED
1800 testing/cffi1/test_recompiler.py::test_extern_python_1 PASSED
1801 testing/cffi1/test_recompiler.py::test_extern_python_bogus_name PASSED
1802 testing/cffi1/test_recompiler.py::test_extern_python_bogus_result_type PASSED
1803 testing/cffi1/test_recompiler.py::test_extern_python_redefine PASSED
1804 testing/cffi1/test_recompiler.py::test_extern_python_struct PASSED
1805 testing/cffi1/test_recompiler.py::test_extern_python_long_double PASSED
1806 testing/cffi1/test_recompiler.py::test_extern_python_signature PASSED
1807 testing/cffi1/test_recompiler.py::test_extern_python_errors PASSED
1808 testing/cffi1/test_recompiler.py::test_extern_python_stdcall PASSED
1809 testing/cffi1/test_recompiler.py::test_extern_python_plus_c PASSED
1810 testing/cffi1/test_recompiler.py::test_introspect_function PASSED
1811 testing/cffi1/test_recompiler.py::test_introspect_global_var PASSED
1812 testing/cffi1/test_recompiler.py::test_introspect_global_var_array PASSED
1813 testing/cffi1/test_recompiler.py::test_introspect_integer_const PASSED
1814 testing/cffi1/test_recompiler.py::test_introspect_typedef PASSED
1815 testing/cffi1/test_recompiler.py::test_introspect_typedef_multiple PASSED
1816 testing/cffi1/test_recompiler.py::test_introspect_struct PASSED
1817 testing/cffi1/test_recompiler.py::test_introspect_union PASSED
1818 testing/cffi1/test_recompiler.py::test_introspect_struct_and_typedef PASSED
1819 testing/cffi1/test_recompiler.py::test_introspect_included_type PASSED
1820 testing/cffi1/test_recompiler.py::test_introspect_order PASSED
1821 testing/cffi1/test_recompiler.py::test_bool_in_cpp PASSED
1822 testing/cffi1/test_recompiler.py::test_bool_in_cpp_2 PASSED
1823 testing/cffi1/test_recompiler.py::test_struct_field_opaque PASSED
1824 testing/cffi1/test_recompiler.py::test_function_arg_opaque SKIPPED (...)
1825 testing/cffi1/test_recompiler.py::test_function_returns_opaque PASSED
1826 testing/cffi1/test_recompiler.py::test_function_returns_union PASSED
1827 testing/cffi1/test_recompiler.py::test_function_returns_partial_struct PASSED
1828 testing/cffi1/test_recompiler.py::test_function_returns_float_complex PASSED
1829 testing/cffi1/test_recompiler.py::test_function_returns_double_complex PASSED
1830 testing/cffi1/test_recompiler.py::test_cdef_using_windows_complex SKIPPED
1831 testing/cffi1/test_recompiler.py::test_function_argument_float_complex PASSED
1832 testing/cffi1/test_recompiler.py::test_function_argument_double_complex PASSED
1833 testing/cffi1/test_recompiler.py::test_typedef_array_dotdotdot PASSED
1834 testing/cffi1/test_recompiler.py::test_typedef_array_dotdotdot_usage PASSED
1835 testing/cffi1/test_recompiler.py::test_call_with_custom_field_pos PASSED
1836 testing/cffi1/test_recompiler.py::test_call_with_nested_anonymous_struct PASSED
1837 testing/cffi1/test_recompiler.py::test_call_with_bitfield PASSED
1838 testing/cffi1/test_recompiler.py::test_call_with_zero_length_field PASSED
1839 testing/cffi1/test_recompiler.py::test_call_with_union PASSED
1840 testing/cffi1/test_recompiler.py::test_call_with_packed_struct PASSED
1841 testing/cffi1/test_recompiler.py::test_pack_not_supported PASSED
1842 testing/cffi1/test_recompiler.py::test_gcc_visibility_hidden PASSED
1843 testing/cffi1/test_recompiler.py::test_override_default_definition PASSED
1844 testing/cffi1/test_recompiler.py::test_char16_char32_type PASSED
1845 testing/cffi1/test_recompiler.py::test_char16_char32_plain_c PASSED
1846 testing/cffi1/test_recompiler.py::test_loader_spec PASSED
1847 testing/cffi1/test_recompiler.py::test_realize_struct_error PASSED
1848 testing/cffi1/test_recompiler.py::test_from_buffer_struct PASSED
1849 testing/cffi1/test_recompiler.py::test_unnamed_bitfield_1 PASSED
1850 testing/cffi1/test_recompiler.py::test_unnamed_bitfield_2 PASSED
1851 testing/cffi1/test_recompiler.py::test_unnamed_bitfield_3 PASSED
1852 testing/cffi1/test_recompiler.py::test_unnamed_bitfield_4 PASSED
1853 testing/cffi1/test_recompiler.py::test_struct_with_func_with_struct_pointer_arg PASSED
1854 testing/cffi1/test_recompiler.py::test_struct_with_func_with_struct_arg PASSED
1855 testing/cffi1/test_recompiler.py::test_passing_large_list PASSED
1856 testing/cffi1/test_recompiler.py::test_convert_api_mode_builtin_function_to_cdata PASSED
1857 testing/cffi1/test_unicode_literals.py::test_cast PASSED
1858 testing/cffi1/test_unicode_literals.py::test_new PASSED
1859 testing/cffi1/test_unicode_literals.py::test_typeof PASSED
1860 testing/cffi1/test_unicode_literals.py::test_sizeof PASSED
1861 testing/cffi1/test_unicode_literals.py::test_alignof PASSED
1862 testing/cffi1/test_unicode_literals.py::test_getctype PASSED
1863 testing/cffi1/test_unicode_literals.py::test_callback PASSED
1864 testing/cffi1/test_verify1.py::test_missing_function PASSED
1865 testing/cffi1/test_verify1.py::test_missing_function_import_error PASSED
1866 testing/cffi1/test_verify1.py::test_simple_case PASSED
1867 testing/cffi1/test_verify1.py::test_Wconversion_unsigned PASSED
1868 testing/cffi1/test_verify1.py::test_Wconversion_integer PASSED
1869 testing/cffi1/test_verify1.py::test_Wconversion_floating PASSED
1870 testing/cffi1/test_verify1.py::test_Wconversion_float2int PASSED
1871 testing/cffi1/test_verify1.py::test_Wconversion_double2int PASSED
1872 testing/cffi1/test_verify1.py::test_rounding_1 PASSED
1873 testing/cffi1/test_verify1.py::test_rounding_2 PASSED
1874 testing/cffi1/test_verify1.py::test_strlen_exact PASSED
1875 testing/cffi1/test_verify1.py::test_strlen_approximate PASSED
1876 testing/cffi1/test_verify1.py::test_return_approximate PASSED
1877 testing/cffi1/test_verify1.py::test_strlen_array_of_char PASSED
1878 testing/cffi1/test_verify1.py::test_longdouble PASSED
1879 testing/cffi1/test_verify1.py::test_longdouble_precision SKIPPED (do...)
1880 testing/cffi1/test_verify1.py::test_primitive_category PASSED
1881 testing/cffi1/test_verify1.py::test_all_integer_and_float_types PASSED
1882 testing/cffi1/test_verify1.py::test_all_complex_types PASSED
1883 testing/cffi1/test_verify1.py::test_var_signed_integer_types PASSED
1884 testing/cffi1/test_verify1.py::test_var_unsigned_integer_types PASSED
1885 testing/cffi1/test_verify1.py::test_fn_signed_integer_types PASSED
1886 testing/cffi1/test_verify1.py::test_fn_unsigned_integer_types PASSED
1887 testing/cffi1/test_verify1.py::test_char_type PASSED
1888 testing/cffi1/test_verify1.py::test_wchar_type PASSED
1889 testing/cffi1/test_verify1.py::test_no_argument PASSED
1890 testing/cffi1/test_verify1.py::test_two_arguments PASSED
1891 testing/cffi1/test_verify1.py::test_macro PASSED
1892 testing/cffi1/test_verify1.py::test_ptr PASSED
1893 testing/cffi1/test_verify1.py::test_bogus_ptr PASSED
1894 testing/cffi1/test_verify1.py::test_verify_typedefs SKIPPED (ignored...)
1895 testing/cffi1/test_verify1.py::test_nondecl_struct PASSED
1896 testing/cffi1/test_verify1.py::test_ffi_full_struct PASSED
1897 testing/cffi1/test_verify1.py::test_ffi_nonfull_struct PASSED
1898 testing/cffi1/test_verify1.py::test_ffi_nonfull_alignment PASSED
1899 testing/cffi1/test_verify1.py::test_struct_bad_sized_integer PASSED
1900 testing/cffi1/test_verify1.py::test_struct_bad_sized_float PASSED
1901 testing/cffi1/test_verify1.py::test_struct_signedness_ignored PASSED
1902 testing/cffi1/test_verify1.py::test_struct_float_vs_int PASSED
1903 testing/cffi1/test_verify1.py::test_struct_array_field PASSED
1904 testing/cffi1/test_verify1.py::test_struct_array_no_length PASSED
1905 testing/cffi1/test_verify1.py::test_struct_array_guess_length PASSED
1906 testing/cffi1/test_verify1.py::test_struct_array_c99_1 PASSED
1907 testing/cffi1/test_verify1.py::test_struct_array_c99_2 PASSED
1908 testing/cffi1/test_verify1.py::test_struct_ptr_to_array_field PASSED
1909 testing/cffi1/test_verify1.py::test_struct_with_bitfield_exact PASSED
1910 testing/cffi1/test_verify1.py::test_struct_with_bitfield_enum PASSED
1911 testing/cffi1/test_verify1.py::test_unsupported_struct_with_bitfield_ellipsis PASSED
1912 testing/cffi1/test_verify1.py::test_global_constants PASSED
1913 testing/cffi1/test_verify1.py::test_global_const_int_size PASSED
1914 testing/cffi1/test_verify1.py::test_global_constants_non_int PASSED
1915 testing/cffi1/test_verify1.py::test_nonfull_enum PASSED
1916 testing/cffi1/test_verify1.py::test_full_enum PASSED
1917 testing/cffi1/test_verify1.py::test_enum_usage PASSED
1918 testing/cffi1/test_verify1.py::test_anonymous_enum PASSED
1919 testing/cffi1/test_verify1.py::test_nonfull_anonymous_enum PASSED
1920 testing/cffi1/test_verify1.py::test_nonfull_enum_syntax2 PASSED
1921 testing/cffi1/test_verify1.py::test_get_set_errno PASSED
1922 testing/cffi1/test_verify1.py::test_define_int PASSED
1923 testing/cffi1/test_verify1.py::test_access_variable PASSED
1924 testing/cffi1/test_verify1.py::test_access_address_of_variable PASSED
1925 testing/cffi1/test_verify1.py::test_access_array_variable PASSED
1926 testing/cffi1/test_verify1.py::test_access_array_variable_length_hidden PASSED
1927 testing/cffi1/test_verify1.py::test_access_struct_variable PASSED
1928 testing/cffi1/test_verify1.py::test_access_callback PASSED
1929 testing/cffi1/test_verify1.py::test_access_callback_function_typedef PASSED
1930 testing/cffi1/test_verify1.py::test_call_with_struct_ptr PASSED
1931 testing/cffi1/test_verify1.py::test_unknown_type PASSED
1932 testing/cffi1/test_verify1.py::test_unknown_type_2 PASSED
1933 testing/cffi1/test_verify1.py::test_unknown_type_3 PASSED
1934 testing/cffi1/test_verify1.py::test_varargs PASSED
1935 testing/cffi1/test_verify1.py::test_varargs_exact PASSED
1936 testing/cffi1/test_verify1.py::test_varargs_struct PASSED
1937 testing/cffi1/test_verify1.py::test_autofilled_struct_as_argument PASSED
1938 testing/cffi1/test_verify1.py::test_autofilled_struct_as_argument_dynamic PASSED
1939 testing/cffi1/test_verify1.py::test_func_returns_struct PASSED
1940 testing/cffi1/test_verify1.py::test_func_as_funcptr PASSED
1941 testing/cffi1/test_verify1.py::test_funcptr_as_argument PASSED
1942 testing/cffi1/test_verify1.py::test_func_as_argument PASSED
1943 testing/cffi1/test_verify1.py::test_array_as_argument PASSED
1944 testing/cffi1/test_verify1.py::test_enum_as_argument PASSED
1945 testing/cffi1/test_verify1.py::test_enum_as_function_result PASSED
1946 testing/cffi1/test_verify1.py::test_enum_values PASSED
1947 testing/cffi1/test_verify1.py::test_typedef_complete_enum PASSED
1948 testing/cffi1/test_verify1.py::test_typedef_broken_complete_enum PASSED
1949 testing/cffi1/test_verify1.py::test_typedef_incomplete_enum PASSED
1950 testing/cffi1/test_verify1.py::test_typedef_enum_as_argument PASSED
1951 testing/cffi1/test_verify1.py::test_typedef_enum_as_function_result PASSED
1952 testing/cffi1/test_verify1.py::test_function_typedef PASSED
1953 testing/cffi1/test_verify1.py::test_opaque_integer_as_function_result PASSED
1954 testing/cffi1/test_verify1.py::test_return_partial_struct PASSED
1955 testing/cffi1/test_verify1.py::test_take_and_return_partial_structs PASSED
1956 testing/cffi1/test_verify1.py::test_cannot_name_struct_type PASSED
1957 testing/cffi1/test_verify1.py::test_dont_check_unnamable_fields PASSED
1958 testing/cffi1/test_verify1.py::test_nested_anonymous_struct_exact PASSED
1959 testing/cffi1/test_verify1.py::test_nested_anonymous_struct_exact_error PASSED
1960 testing/cffi1/test_verify1.py::test_nested_anonymous_struct_inexact_1 PASSED
1961 testing/cffi1/test_verify1.py::test_nested_anonymous_struct_inexact_2 PASSED
1962 testing/cffi1/test_verify1.py::test_ffi_union PASSED
1963 testing/cffi1/test_verify1.py::test_ffi_union_partial PASSED
1964 testing/cffi1/test_verify1.py::test_ffi_union_with_partial_struct PASSED
1965 testing/cffi1/test_verify1.py::test_ffi_union_partial_2 PASSED
1966 testing/cffi1/test_verify1.py::test_ffi_union_with_partial_struct_2 PASSED
1967 testing/cffi1/test_verify1.py::test_ffi_struct_packed PASSED
1968 testing/cffi1/test_verify1.py::test_tmpdir PASSED
1969 testing/cffi1/test_verify1.py::test_relative_to SKIPPED (not available)
1970 testing/cffi1/test_verify1.py::test_bug1 PASSED
1971 testing/cffi1/test_verify1.py::test_bool PASSED
1972 testing/cffi1/test_verify1.py::test_bool_on_long_double PASSED
1973 testing/cffi1/test_verify1.py::test_cannot_pass_float PASSED
1974 testing/cffi1/test_verify1.py::test_addressof PASSED
1975 testing/cffi1/test_verify1.py::test_callback_in_thread XFAIL (adapt ...)
1976 testing/cffi1/test_verify1.py::test_keepalive_lib XFAIL (adapt or re...)
1977 testing/cffi1/test_verify1.py::test_keepalive_ffi XFAIL (adapt or re...)
1978 testing/cffi1/test_verify1.py::test_FILE_stored_in_stdout SKIPPED (l...)
1979 testing/cffi1/test_verify1.py::test_FILE_stored_explicitly PASSED
1980 testing/cffi1/test_verify1.py::test_global_array_with_missing_length PASSED
1981 testing/cffi1/test_verify1.py::test_global_array_with_dotdotdot_length PASSED
1982 testing/cffi1/test_verify1.py::test_bad_global_array_with_dotdotdot_length XFAIL
1983 testing/cffi1/test_verify1.py::test_struct_containing_struct PASSED
1984 testing/cffi1/test_verify1.py::test_struct_returned_by_func PASSED
1985 testing/cffi1/test_verify1.py::test_include PASSED
1986 testing/cffi1/test_verify1.py::test_include_enum PASSED
1987 testing/cffi1/test_verify1.py::test_named_pointer_as_argument PASSED
1988 testing/cffi1/test_verify1.py::test_enum_size PASSED
1989 testing/cffi1/test_verify1.py::test_enum_bug118 PASSED
1990 testing/cffi1/test_verify1.py::test_string_to_voidp_arg PASSED
1991 testing/cffi1/test_verify1.py::test_callback_indirection PASSED
1992 testing/cffi1/test_verify1.py::test_floatstar_argument PASSED
1993 testing/cffi1/test_verify1.py::test_charstar_argument PASSED
1994 testing/cffi1/test_verify1.py::test_passing_string_or_NULL PASSED
1995 testing/cffi1/test_verify1.py::test_typeof_function PASSED
1996 testing/cffi1/test_verify1.py::test_call_with_voidstar_arg PASSED
1997 testing/cffi1/test_verify1.py::test_dir PASSED
1998 testing/cffi1/test_verify1.py::test_typeof_func_with_struct_argument PASSED
1999 testing/cffi1/test_verify1.py::test_bug_const_char_ptr_array_1 PASSED
2000 testing/cffi1/test_verify1.py::test_bug_const_char_ptr_array_2 PASSED
2001 testing/cffi1/test_verify1.py::test_various_calls_direct PASSED
2002 testing/cffi1/test_verify1.py::test_various_calls_libffi PASSED
2003 testing/cffi1/test_verify1.py::test_ptr_to_opaque PASSED
2004 testing/cffi1/test_verify1.py::test_errno_working_even_with_pypys_jit PASSED
2005 testing/cffi1/test_verify1.py::test_getlasterror_working_even_with_pypys_jit SKIPPED
2006 testing/cffi1/test_verify1.py::test_verify_dlopen_flags PASSED
2007 testing/cffi1/test_verify1.py::test_consider_not_implemented_function_type PASSED
2008 testing/cffi1/test_verify1.py::test_verify_extra_arguments PASSED
2009 testing/cffi1/test_verify1.py::test_implicit_unicode_on_windows SKIPPED
2010 testing/cffi1/test_verify1.py::test_define_known_value PASSED
2011 testing/cffi1/test_verify1.py::test_define_wrong_value PASSED
2012 testing/cffi1/test_verify1.py::test_some_integer_type_for_issue73 PASSED
2013 testing/cffi1/test_verify1.py::test_unsupported_some_primitive_types PASSED
2014 testing/cffi1/test_verify1.py::test_windows_dllimport_data SKIPPED (...)
2015 testing/cffi1/test_verify1.py::test_macro_var PASSED
2016 testing/cffi1/test_verify1.py::test_const_pointer_to_pointer PASSED
2017 testing/cffi1/test_verify1.py::test_share_FILE PASSED
2018 testing/cffi1/test_verify1.py::test_win_common_types SKIPPED (Window...)
2019 testing/cffi1/test_verify1.py::test_ffi_gc_size_arg SKIPPED (only ru...)
2020 testing/cffi1/test_verify1.py::test_ffi_gc_size_arg_2 SKIPPED (find ...)
2021 testing/cffi1/test_verify1.py::test_ffi_new_with_cycles SKIPPED (fin...)
2022 testing/cffi1/test_zdist.py::TestDist::test_empty PASSED
2023 testing/cffi1/test_zdist.py::TestDist::test_abi_emit_python_code_1 PASSED
2024 testing/cffi1/test_zdist.py::TestDist::test_abi_emit_python_code_2 PASSED
2025 testing/cffi1/test_zdist.py::TestDist::test_abi_emit_python_code_3 PASSED
2026 testing/cffi1/test_zdist.py::TestDist::test_abi_compile_1 PASSED
2027 testing/cffi1/test_zdist.py::TestDist::test_abi_compile_2 PASSED
2028 testing/cffi1/test_zdist.py::TestDist::test_abi_compile_3 PASSED
2029 testing/cffi1/test_zdist.py::TestDist::test_api_emit_c_code_1 PASSED
2030 testing/cffi1/test_zdist.py::TestDist::test_api_emit_c_code_2 PASSED
2031 testing/cffi1/test_zdist.py::TestDist::test_api_emit_c_code_3 PASSED
2032 testing/cffi1/test_zdist.py::TestDist::test_api_compile_1 PASSED
2033 testing/cffi1/test_zdist.py::TestDist::test_api_compile_2 PASSED
2034 testing/cffi1/test_zdist.py::TestDist::test_api_compile_3 PASSED
2035 testing/cffi1/test_zdist.py::TestDist::test_api_compile_explicit_target_1 PASSED
2036 testing/cffi1/test_zdist.py::TestDist::test_api_compile_explicit_target_3 PASSED
2037 testing/cffi1/test_zdist.py::TestDist::test_api_distutils_extension_1 PASSED
2038 testing/cffi1/test_zdist.py::TestDist::test_api_distutils_extension_2 PASSED
2039 testing/cffi1/test_zdist.py::TestDist::test_distutils_api_1 PASSED
2040 testing/cffi1/test_zdist.py::TestDist::test_distutils_api_2 PASSED
2041 testing/cffi1/test_zdist.py::TestDist::test_setuptools_abi_1 PASSED
2042 testing/cffi1/test_zdist.py::TestDist::test_setuptools_abi_2 PASSED
2043 testing/cffi1/test_zdist.py::TestDist::test_setuptools_api_1 PASSED
2044 testing/cffi1/test_zdist.py::TestDist::test_setuptools_api_2 PASSED
2045 testing/embedding/test_basic.py::TestBasic::test_empty PASSED
2046 testing/embedding/test_basic.py::TestBasic::test_basic PASSED
2047 testing/embedding/test_basic.py::TestBasic::test_two_modules PASSED
2048 testing/embedding/test_basic.py::TestBasic::test_init_time_error PASSED
2049 testing/embedding/test_basic.py::TestBasic::test_embedding_with_unicode PASSED
2050 testing/embedding/test_performance.py::TestPerformance::test_perf_single_threaded PASSED
2051 testing/embedding/test_performance.py::TestPerformance::test_perf_in_1_thread PASSED
2052 testing/embedding/test_performance.py::TestPerformance::test_perf_in_2_threads PASSED
2053 testing/embedding/test_performance.py::TestPerformance::test_perf_in_4_threads PASSED
2054 testing/embedding/test_performance.py::TestPerformance::test_perf_in_8_threads PASSED
2055 testing/embedding/test_recursive.py::TestRecursive::test_recursive PASSED
2056 testing/embedding/test_thread.py::TestThread::test_first_calls_in_parallel PASSED
2057 testing/embedding/test_thread.py::TestThread::test_init_different_modules_in_different_threads PASSED
2058 testing/embedding/test_thread.py::TestThread::test_alt_issue PASSED
2059 testing/embedding/test_thread.py::TestThread::test_load_in_parallel_more PASSED
2060 testing/embedding/test_tlocal.py::TestThreadLocal::test_thread_local PASSED
2062 =============================== warnings summary ===============================
2063 src/cffi/_imp_emulation.py:4
2064 $(@D)/src/c/../cffi/_imp_emulation.py:4: DeprecationWarning: the imp module is deprecated in favour of importlib; see the module's documentation for alternative uses
2067 src/c/test_c.py::test_callback_return_type
2068 $(PYTHON_DIR)/vendor-packages/_pytest/unraisableexception.py:85: PytestUnraisableExceptionWarning: Exception ignored from cffi callback <function test_callback_return_type.<locals>.cb at $(POINTER)>, trying to convert the result back to C: None
2070 Traceback (most recent call last):
2071 File "$(@D)/src/c/test_c.py", line 1453, in test_callback_return_type
2073 OverflowError: int too big to convert
2075 warnings.warn(pytest.PytestUnraisableExceptionWarning(msg))
2077 src/c/test_c.py::test_callback_returning_wchar_t
2078 $(PYTHON_DIR)/vendor-packages/_pytest/unraisableexception.py:85: PytestUnraisableExceptionWarning: Exception ignored from cffi callback <function test_callback_returning_wchar_t.<locals>.cb at $(POINTER)>: None
2080 Traceback (most recent call last):
2081 File "$(@D)/src/c/test_c.py", line 1748, in cb
2085 warnings.warn(pytest.PytestUnraisableExceptionWarning(msg))
2087 src/c/test_c.py::test_cast_with_functionptr
2088 $(@D)/src/c/test_c.py:2166: UserWarning: implicit cast from 'char *' to a different pointer type: will be forbidden in the future (check that the types are as you expect; use an explicit ffi.cast() if they are correct)
2089 newp(BStructPtr, [cast(BCharP, 0)])
2091 testing/cffi0/test_ffi_backend.py::TestFFI::test_callback_crash
2092 $(PYTHON_DIR)/vendor-packages/_pytest/unraisableexception.py:85: PytestUnraisableExceptionWarning: Exception ignored from cffi callback <function BackendTests.test_callback_crash.<locals>.cb at $(POINTER)>: None
2094 Traceback (most recent call last):
2095 File "$(@D)/testing/cffi0/backend_tests.py", line 848, in cb
2099 warnings.warn(pytest.PytestUnraisableExceptionWarning(msg))
2101 testing/cffi0/test_ffi_backend.py::TestFFI::test_callback_decorator
2102 $(PYTHON_DIR)/vendor-packages/_pytest/unraisableexception.py:85: PytestUnraisableExceptionWarning: Exception ignored from cffi callback <function BackendTests.test_callback_decorator.<locals>.cb at $(POINTER)>, trying to convert the result back to C: None
2104 Traceback (most recent call last):
2105 File "$(@D)/testing/cffi0/backend_tests.py", line 1390, in test_callback_decorator
2106 assert cb((1 << (sz*8-1)) - 1, -10) == 42
2107 OverflowError: int too big to convert
2109 warnings.warn(pytest.PytestUnraisableExceptionWarning(msg))
2111 testing/cffi0/test_parsing.py::test_missing_newline_bug
2112 $(@D)/src/c/../cffi/cparser.py:436: UserWarning: #pragma in cdef() are entirely ignored. They should be removed for now, otherwise your code might behave differently in a future version of CFFI if #pragma support gets added. Note that '#pragma pack' needs to be replaced with the 'packed' keyword argument to cdef().
2115 testing/cffi1/test_ffi_obj.py::test_ffi_callback
2116 $(PYTHON_DIR)/vendor-packages/_pytest/unraisableexception.py:85: PytestUnraisableExceptionWarning: Exception ignored from cffi callback <function test_ffi_callback.<locals>.<lambda> at $(POINTER)>: None
2118 Traceback (most recent call last):
2119 File "$(@D)/testing/cffi1/test_ffi_obj.py", line 130, in <lambda>
2120 assert ffi.callback("int(int)", lambda x: x + "", error=-66)(10) == -66
2121 TypeError: unsupported operand type(s) for +: 'int' and 'str'
2123 warnings.warn(pytest.PytestUnraisableExceptionWarning(msg))
2125 testing/cffi1/test_ffi_obj.py::test_ffi_callback_decorator
2126 $(PYTHON_DIR)/vendor-packages/_pytest/unraisableexception.py:85: PytestUnraisableExceptionWarning: Exception ignored from cffi callback <function test_ffi_callback_decorator.<locals>.<lambda> at $(POINTER)>: None
2128 Traceback (most recent call last):
2129 File "$(@D)/testing/cffi1/test_ffi_obj.py", line 136, in <lambda>
2130 assert deco(lambda x: x + "")(10) == -66
2131 TypeError: unsupported operand type(s) for +: 'int' and 'str'
2133 warnings.warn(pytest.PytestUnraisableExceptionWarning(msg))
2135 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_callback_crash
2136 $(PYTHON_DIR)/vendor-packages/_pytest/unraisableexception.py:85: PytestUnraisableExceptionWarning: Exception ignored from cffi callback <function TestNewFFI1.test_callback_crash.<locals>.cb at $(POINTER)>: None
2138 Traceback (most recent call last):
2139 File "$(@D)/testing/cffi1/test_new_ffi_1.py", line 863, in cb
2143 warnings.warn(pytest.PytestUnraisableExceptionWarning(msg))
2145 testing/cffi1/test_new_ffi_1.py::TestNewFFI1::test_callback_decorator
2146 $(PYTHON_DIR)/vendor-packages/_pytest/unraisableexception.py:85: PytestUnraisableExceptionWarning: Exception ignored from cffi callback <function TestNewFFI1.test_callback_decorator.<locals>.cb at $(POINTER)>, trying to convert the result back to C: None
2148 Traceback (most recent call last):
2149 File "$(@D)/testing/cffi1/test_new_ffi_1.py", line 1341, in test_callback_decorator
2150 assert cb((1 << (sz*8-1)) - 1, -10) == 42
2151 OverflowError: int too big to convert
2153 warnings.warn(pytest.PytestUnraisableExceptionWarning(msg))
2155 testing/cffi1/test_recompiler.py::test_macro_var_callback
2156 $(PYTHON_DIR)/vendor-packages/_pytest/unraisableexception.py:85: PytestUnraisableExceptionWarning: Exception ignored from cffi callback <function test_macro_var_callback.<locals>.get_my_value at $(POINTER)>, trying to convert the result back to C: None
2158 Traceback (most recent call last):
2159 File "$(PYTHON_DIR)/vendor-packages/_pytest/python_api.py", line 968, in raises
2160 func(*args[1:], **kwargs)
2161 TypeError: initializer for ctype 'int *' must be a cdata pointer, not str
2163 warnings.warn(pytest.PytestUnraisableExceptionWarning(msg))
2165 -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
2166 ======== 1926 passed, 123 skipped, 4 xfailed, 12 warnings ========