mirror of
https://github.com/boostorg/build.git
synced 2026-01-26 06:22:26 +00:00
19 lines
405 B
Python
19 lines
405 B
Python
#!/usr/bin/python
|
|
|
|
from BoostBuild import Tester, List, dll_suffix, exe_suffix
|
|
import os
|
|
from string import strip
|
|
|
|
t = Tester()
|
|
|
|
# First check some startup
|
|
t.set_tree("direct-request-test")
|
|
t.run_build_system(extra_args="define=MACROS")
|
|
|
|
t.expect_addition("bin/gcc/debug/"
|
|
* (List("a.o b.o")
|
|
+ ('b'+dll_suffix)
|
|
+ ('a'+exe_suffix)))
|
|
|
|
t.cleanup()
|