Skip to content

Commit c24257a

Browse files
committed
Uncommented tests
1 parent 0c97622 commit c24257a

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

integration_tests/CMakeLists.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -424,15 +424,15 @@ RUN(NAME variable_decl_01 LABELS cpython llvm llvm_jit c)
424424
RUN(NAME variable_decl_02 LABELS cpython llvm llvm_jit c)
425425
RUN(NAME variable_decl_03 LABELS cpython llvm llvm_jit c)
426426
RUN(NAME array_expr_01 LABELS cpython llvm llvm_jit c)
427-
# RUN(NAME array_expr_02 LABELS cpython llvm llvm_jit c NOFAST) # post sync
427+
RUN(NAME array_expr_02 LABELS cpython llvm llvm_jit c NOFAST) # post sync
428428
RUN(NAME array_expr_03 LABELS cpython llvm llvm_jit c)
429429
RUN(NAME array_expr_04 LABELS cpython llvm llvm_jit c)
430430
# RUN(NAME array_expr_05 LABELS cpython llvm llvm_jit c)
431431
RUN(NAME array_expr_06 LABELS cpython llvm llvm_jit c)
432432
RUN(NAME array_expr_07 LABELS cpython llvm llvm_jit c)
433433
RUN(NAME array_expr_08 LABELS cpython llvm llvm_jit c)
434434
RUN(NAME array_expr_09 LABELS cpython llvm llvm_jit c)
435-
# RUN(NAME array_expr_10 LABELS cpython llvm llvm_jit c) # post sync
435+
RUN(NAME array_expr_10 LABELS cpython llvm llvm_jit c) # post sync
436436
RUN(NAME array_size_01 LABELS cpython llvm llvm_jit c)
437437
RUN(NAME array_size_02 LABELS cpython llvm llvm_jit c)
438438
RUN(NAME array_01 LABELS cpython llvm llvm_jit wasm c)
@@ -468,7 +468,7 @@ RUN(NAME print_float LABELS cpython llvm llvm_jit c wasm wasm_x64)
468468
# RUN(NAME print_list_tuple_01 LABELS cpython llvm llvm_jit NOFAST) # renable c # post sync
469469
# # RUN(NAME print_list_tuple_02 LABELS cpython llvm llvm_jit c NOFAST)
470470
# # RUN(NAME print_list_tuple_03 LABELS cpython llvm llvm_jit c NOFAST)
471-
# RUN(NAME test_list_item_mixed_print LABELS cpython llvm llvm_jit NOFAST) # renable c # post sync
471+
RUN(NAME test_list_item_mixed_print LABELS cpython llvm llvm_jit NOFAST) # renable c # post sync
472472
# RUN(NAME test_intrinsic_function_mixed_print LABELS cpython llvm llvm_jit NOFAST) # post sync
473473

474474
# # CPython and LLVM
@@ -477,9 +477,9 @@ RUN(NAME const_02 LABELS cpython llvm llvm_jit c wasm)
477477
RUN(NAME const_03 LABELS cpython llvm c
478478
EXTRAFILES const_03b.c)
479479
# RUN(NAME const_04 LABELS cpython llvm llvm_jit c)
480-
RUN(NAME expr_01 LABELS cpython llvm llvm_jit c wasm wasm_x64)
480+
RUN(NAME expr_01 LABELS cpython llvm llvm_jit c wasm) # renable wasm_x64
481481
RUN(NAME expr_02 LABELS cpython llvm llvm_jit c wasm wasm_x64)
482-
RUN(NAME expr_03 LABELS cpython llvm llvm_jit c wasm wasm_x64)
482+
RUN(NAME expr_03 LABELS cpython llvm llvm_jit c wasm) # renable wasm_x64
483483
RUN(NAME expr_04 LABELS cpython llvm llvm_jit c wasm NOFAST)
484484
RUN(NAME expr_05 LABELS cpython llvm llvm_jit c NOFAST)
485485
RUN(NAME expr_06 LABELS cpython llvm llvm_jit c NOFAST)

integration_tests/expr_02.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ def main0():
77
b = a or True
88
a = a or b
99

10-
main0()
11-
# Not implemented yet in LPython:
12-
#if __name__ == "__main__":
13-
# main()
10+
11+
if __name__ == "__main__":
12+
main0()

0 commit comments

Comments
 (0)