Example #1
0
def test_if_else_stmt():
    pos_test(test2_py, test2_c)
Example #2
0
def test_simple_if_stmt():
    pos_test(test1_py, test1_c)
Example #3
0
def test_if_elif_elif_else_stmt():
    pos_test(test5_py, test5_c)
Example #4
0
def test_bool_lst_assignment():
    pos_test("a = [True, False]", "bool a[2];\n\na = [true, false];")
Example #5
0
def test_loop_string_list():
    pos_test(test2_py, test2_c)
Example #6
0
def test_loop_literal_list():
    pos_test(test1_py, test1_c)