Skip to content

Commit 9088078

Browse files
Thirumalai-Shaktivelcertik
authored andcommitted
Register tests in CMakeLists
1 parent 2222314 commit 9088078

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

integration_tests/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ RUN(NAME modules_01 LABELS cpython llvm wasm wasm_x86)
240240
RUN(NAME modules_02 LABELS cpython llvm wasm wasm_x86)
241241
RUN(NAME test_import_01 LABELS cpython llvm)
242242
RUN(NAME test_import_02 LABELS cpython llvm)
243+
RUN(NAME test_import_03 LABELS cpython llvm)
243244
RUN(NAME test_math LABELS cpython llvm)
244245
RUN(NAME test_numpy_01 LABELS cpython llvm c)
245246
RUN(NAME test_numpy_02 LABELS cpython llvm c)

integration_tests/test_import_01.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import test_import
2-
from test_import import print_a
32

4-
print(print_a())
3+
print(test_import.print_a())
54
print(test_import.print_b())
65
print(test_import.print_c())

integration_tests/test_import_03.py

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
from test_import import print_a
2+
from test_import.test_import_1 import print_b
3+
4+
print(print_a())
5+
print(print_b())

0 commit comments

Comments
 (0)