2020-07-23 14:58:19 +08:00
|
|
|
import sys
|
2022-09-14 15:28:47 +08:00
|
|
|
|
2020-07-23 14:58:19 +08:00
|
|
|
import test_cmake_build
|
|
|
|
|
2022-09-14 15:28:47 +08:00
|
|
|
assert isinstance(__file__, str) # Test this is properly set
|
|
|
|
|
2020-07-23 14:58:19 +08:00
|
|
|
assert test_cmake_build.add(1, 2) == 3
|
2022-09-14 15:28:47 +08:00
|
|
|
print(f"{sys.argv[1]} imports, runs, and adds: 1 + 2 = 3")
|