2024-06-28 23:03:51 +08:00
|
|
|
from __future__ import annotations
|
|
|
|
|
|
2020-08-18 02:44:43 +08:00
|
|
|
import sys
|
2022-03-27 05:45:37 +08:00
|
|
|
|
2020-08-18 02:44:43 +08:00
|
|
|
import test_cmake_build
|
|
|
|
|
|
2022-10-29 01:10:19 +08:00
|
|
|
assert isinstance(__file__, str) # Test this is properly set
|
2022-03-27 05:45:37 +08:00
|
|
|
|
2020-08-18 02:44:43 +08:00
|
|
|
assert test_cmake_build.add(1, 2) == 3
|
2022-10-29 01:10:19 +08:00
|
|
|
print(f"{sys.argv[1]} imports, runs, and adds: 1 + 2 = 3")
|