David Stes
2024-03-31 8cdd197ba643eb2608c5aab87567625bb9336cee
commit | author | age
55f071 1 ============================= test session starts ==============================
MT 2 platform sunos5 -- Python $(PYTHON_VERSION).X -- $(PYTHON)
3 cachedir: .pytest_cache
4 rootdir: $(@D)
6fdca7 5 collecting ... collected 130 items
55f071 6
MT 7 tests/test_c_ast.py::TestNodeVisitor::test_repr PASSED
8 tests/test_c_ast.py::TestNodeVisitor::test_scalar_children PASSED
9 tests/test_c_ast.py::TestNodeVisitor::tests_list_children PASSED
10 tests/test_c_ast.py::Test_c_ast::test_BinaryOp PASSED
11 tests/test_c_ast.py::Test_c_ast::test_weakref_works_on_coord PASSED
12 tests/test_c_ast.py::Test_c_ast::test_weakref_works_on_nodes PASSED
13 tests/test_c_generator.py::TestCasttoC::test_nested_else_if_line_breaks PASSED
14 tests/test_c_generator.py::TestCasttoC::test_to_type PASSED
15 tests/test_c_generator.py::TestCasttoC::test_to_type_with_cpp SKIPPED
16 tests/test_c_generator.py::TestCtoC::test_alignment PASSED
17 tests/test_c_generator.py::TestCtoC::test_array_decl PASSED
18 tests/test_c_generator.py::TestCtoC::test_atomic_qual PASSED
19 tests/test_c_generator.py::TestCtoC::test_casts PASSED
20 tests/test_c_generator.py::TestCtoC::test_comma_op_assignment PASSED
21 tests/test_c_generator.py::TestCtoC::test_comma_op_in_ternary PASSED
22 tests/test_c_generator.py::TestCtoC::test_comma_operator_funcarg PASSED
23 tests/test_c_generator.py::TestCtoC::test_complex_decls PASSED
24 tests/test_c_generator.py::TestCtoC::test_compound_literal PASSED
25 tests/test_c_generator.py::TestCtoC::test_enum PASSED
26 tests/test_c_generator.py::TestCtoC::test_enum_typedef PASSED
27 tests/test_c_generator.py::TestCtoC::test_expr_list_in_initializer_list PASSED
28 tests/test_c_generator.py::TestCtoC::test_exprlist_with_semi PASSED
29 tests/test_c_generator.py::TestCtoC::test_exprlist_with_subexprlist PASSED
30 tests/test_c_generator.py::TestCtoC::test_exprs PASSED
31 tests/test_c_generator.py::TestCtoC::test_generate_struct_union_enum_exception PASSED
32 tests/test_c_generator.py::TestCtoC::test_initlist PASSED
33 tests/test_c_generator.py::TestCtoC::test_issue246 PASSED
34 tests/test_c_generator.py::TestCtoC::test_issue36 PASSED
35 tests/test_c_generator.py::TestCtoC::test_issue37 PASSED
36 tests/test_c_generator.py::TestCtoC::test_issue66 PASSED
37 tests/test_c_generator.py::TestCtoC::test_issue83 PASSED
38 tests/test_c_generator.py::TestCtoC::test_issue84 PASSED
39 tests/test_c_generator.py::TestCtoC::test_krstyle PASSED
40 tests/test_c_generator.py::TestCtoC::test_nest_initializer_list PASSED
41 tests/test_c_generator.py::TestCtoC::test_nest_named_initializer PASSED
42 tests/test_c_generator.py::TestCtoC::test_nested_sizeof PASSED
43 tests/test_c_generator.py::TestCtoC::test_noreturn PASSED
44 tests/test_c_generator.py::TestCtoC::test_pragma PASSED
45 tests/test_c_generator.py::TestCtoC::test_ptr_decl PASSED
46 tests/test_c_generator.py::TestCtoC::test_reduce_parentheses_binaryops PASSED
47 tests/test_c_generator.py::TestCtoC::test_statements PASSED
48 tests/test_c_generator.py::TestCtoC::test_static_assert PASSED
49 tests/test_c_generator.py::TestCtoC::test_struct_decl PASSED
50 tests/test_c_generator.py::TestCtoC::test_switchcase PASSED
51 tests/test_c_generator.py::TestCtoC::test_ternary PASSED
52 tests/test_c_generator.py::TestCtoC::test_trivial_decls PASSED
53 tests/test_c_generator.py::TestFunctionDeclGeneration::test_partial_funcdecl_generation PASSED
54 tests/test_c_lexer.py::TestCLexerErrors::test_char_constants PASSED
55 tests/test_c_lexer.py::TestCLexerErrors::test_integer_constants PASSED
56 tests/test_c_lexer.py::TestCLexerErrors::test_preprocessor PASSED
57 tests/test_c_lexer.py::TestCLexerErrors::test_string_literals PASSED
58 tests/test_c_lexer.py::TestCLexerErrors::test_trivial_tokens PASSED
59 tests/test_c_lexer.py::TestCLexerNoErrors::test_char_constants PASSED
60 tests/test_c_lexer.py::TestCLexerNoErrors::test_exprs PASSED
61 tests/test_c_lexer.py::TestCLexerNoErrors::test_floating_constants PASSED
62 tests/test_c_lexer.py::TestCLexerNoErrors::test_hexadecimal_floating_constants PASSED
63 tests/test_c_lexer.py::TestCLexerNoErrors::test_id_typeid PASSED
64 tests/test_c_lexer.py::TestCLexerNoErrors::test_integer_constants PASSED
65 tests/test_c_lexer.py::TestCLexerNoErrors::test_mess PASSED
66 tests/test_c_lexer.py::TestCLexerNoErrors::test_new_keywords PASSED
67 tests/test_c_lexer.py::TestCLexerNoErrors::test_on_rbrace_lbrace PASSED
68 tests/test_c_lexer.py::TestCLexerNoErrors::test_preprocessor_line PASSED
69 tests/test_c_lexer.py::TestCLexerNoErrors::test_preprocessor_line_funny PASSED
70 tests/test_c_lexer.py::TestCLexerNoErrors::test_preprocessor_pragma PASSED
71 tests/test_c_lexer.py::TestCLexerNoErrors::test_special_names PASSED
72 tests/test_c_lexer.py::TestCLexerNoErrors::test_statements PASSED
73 tests/test_c_lexer.py::TestCLexerNoErrors::test_string_literal PASSED
74 tests/test_c_lexer.py::TestCLexerNoErrors::test_trivial_tokens PASSED
75 tests/test_c_parser.py::TestCParser_fundamentals::test_FileAST PASSED
76 tests/test_c_parser.py::TestCParser_fundamentals::test_alignof PASSED
77 tests/test_c_parser.py::TestCParser_fundamentals::test_anonymous_struct_union PASSED
78 tests/test_c_parser.py::TestCParser_fundamentals::test_atomic_specifier PASSED
79 tests/test_c_parser.py::TestCParser_fundamentals::test_compound_literals PASSED
80 tests/test_c_parser.py::TestCParser_fundamentals::test_compound_statement PASSED
81 tests/test_c_parser.py::TestCParser_fundamentals::test_coords PASSED
82 tests/test_c_parser.py::TestCParser_fundamentals::test_decl_inits PASSED
83 tests/test_c_parser.py::TestCParser_fundamentals::test_decl_named_inits PASSED
84 tests/test_c_parser.py::TestCParser_fundamentals::test_duplicate_typedef PASSED
85 tests/test_c_parser.py::TestCParser_fundamentals::test_empty_toplevel_decl PASSED
86 tests/test_c_parser.py::TestCParser_fundamentals::test_enums PASSED
87 tests/test_c_parser.py::TestCParser_fundamentals::test_forloop_coord PASSED
88 tests/test_c_parser.py::TestCParser_fundamentals::test_func_decls_with_array_dim_qualifiers PASSED
89 tests/test_c_parser.py::TestCParser_fundamentals::test_function_definitions PASSED
90 tests/test_c_parser.py::TestCParser_fundamentals::test_initial_semi PASSED
91 tests/test_c_parser.py::TestCParser_fundamentals::test_inline_specifier PASSED
92 tests/test_c_parser.py::TestCParser_fundamentals::test_int128 PASSED
93 tests/test_c_parser.py::TestCParser_fundamentals::test_invalid_multiple_types_error PASSED
94 tests/test_c_parser.py::TestCParser_fundamentals::test_invalid_typedef_storage_qual_error PASSED
95 tests/test_c_parser.py::TestCParser_fundamentals::test_multi_decls PASSED
96 tests/test_c_parser.py::TestCParser_fundamentals::test_nested_decls PASSED
97 tests/test_c_parser.py::TestCParser_fundamentals::test_noreturn_specifier PASSED
98 tests/test_c_parser.py::TestCParser_fundamentals::test_offsetof PASSED
99 tests/test_c_parser.py::TestCParser_fundamentals::test_parenthesized_compounds PASSED
100 tests/test_c_parser.py::TestCParser_fundamentals::test_pragma PASSED
101 tests/test_c_parser.py::TestCParser_fundamentals::test_pragmacomp_or_statement PASSED
102 tests/test_c_parser.py::TestCParser_fundamentals::test_qualifiers_storage_specifiers PASSED
103 tests/test_c_parser.py::TestCParser_fundamentals::test_simple_decls PASSED
104 tests/test_c_parser.py::TestCParser_fundamentals::test_sizeof PASSED
105 tests/test_c_parser.py::TestCParser_fundamentals::test_static_assert PASSED
106 tests/test_c_parser.py::TestCParser_fundamentals::test_struct_bitfields PASSED
107 tests/test_c_parser.py::TestCParser_fundamentals::test_struct_empty PASSED
108 tests/test_c_parser.py::TestCParser_fundamentals::test_struct_enum PASSED
109 tests/test_c_parser.py::TestCParser_fundamentals::test_struct_members_namespace PASSED
110 tests/test_c_parser.py::TestCParser_fundamentals::test_struct_union PASSED
111 tests/test_c_parser.py::TestCParser_fundamentals::test_struct_with_extra_semis_inside PASSED
112 tests/test_c_parser.py::TestCParser_fundamentals::test_struct_with_initial_semi PASSED
113 tests/test_c_parser.py::TestCParser_fundamentals::test_tags_namespace PASSED
114 tests/test_c_parser.py::TestCParser_fundamentals::test_typedef PASSED
115 tests/test_c_parser.py::TestCParser_fundamentals::test_unified_string_literals PASSED
116 tests/test_c_parser.py::TestCParser_fundamentals::test_unified_wstring_literals PASSED
117 tests/test_c_parser.py::TestCParser_fundamentals::test_vla PASSED
118 tests/test_c_parser.py::TestCParser_typenames::test_ambiguous_parameters PASSED
119 tests/test_c_parser.py::TestCParser_typenames::test_innerscope_reuse_typedef_name PASSED
120 tests/test_c_parser.py::TestCParser_typenames::test_innerscope_typedef PASSED
121 tests/test_c_parser.py::TestCParser_typenames::test_nested_function_decls PASSED
122 tests/test_c_parser.py::TestCParser_typenames::test_parameter_reuse_typedef_name PASSED
123 tests/test_c_parser.py::TestCParser_typenames::test_samescope_reuse_name PASSED
124 tests/test_c_parser.py::TestCParser_whole_code::test_empty_statements PASSED
125 tests/test_c_parser.py::TestCParser_whole_code::test_expressions PASSED
126 tests/test_c_parser.py::TestCParser_whole_code::test_for_statement PASSED
127 tests/test_c_parser.py::TestCParser_whole_code::test_statements PASSED
128 tests/test_c_parser.py::TestCParser_whole_code::test_switch_statement PASSED
129 tests/test_c_parser.py::TestCParser_whole_code::test_whole_file PASSED
130 tests/test_c_parser.py::TestCParser_whole_code::test_whole_file_with_stdio PASSED
131 tests/test_examples.py::TestExamplesSucceed::test_all_examples SKIPPED
132 tests/test_general.py::TestParsing::test_c11_with_cpp SKIPPED (cpp o...)
133 tests/test_general.py::TestParsing::test_cpp_funkydir SKIPPED (cpp o...)
134 tests/test_general.py::TestParsing::test_no_real_content_after_cpp SKIPPED
135 tests/test_general.py::TestParsing::test_with_cpp SKIPPED (cpp only ...)
136 tests/test_general.py::TestParsing::test_without_cpp PASSED
137
6fdca7 138 ======== 124 passed, 6 skipped ========