2
0
mirror of https://github.com/boostorg/build.git synced 2026-01-26 18:32:33 +00:00
Files
build/test/test1.py
Vladimir Prus e451f261bc Added two example tests.
[SVN r13457]
2002-04-12 07:26:10 +00:00

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()