mirror of
https://github.com/boostorg/build.git
synced 2026-01-26 18:32:33 +00:00
14 lines
200 B
Python
14 lines
200 B
Python
#!/usr/bin/python
|
|
|
|
import BoostBuild
|
|
|
|
t = BoostBuild.Tester()
|
|
|
|
t.write("test.jam","""
|
|
actions unbuilt { } unbuilt all ;
|
|
ECHO "Hi" ;
|
|
""")
|
|
|
|
t.run_build_system("-ftest.jam", stdout="Hi\n")
|
|
t.pass_test()
|