mirror of
https://github.com/boostorg/build.git
synced 2026-02-11 11:42:14 +00:00
* builtin.jam (variant): New rule.
* build-system.jam: Unconditionally add <toolset>gcc to build
request. Will be fixed when toolset support is ready.
* feature.jam (extend-feature): Bugfix.
[SVN r15678]
16 lines
287 B
Python
16 lines
287 B
Python
#!/usr/bin/python
|
|
|
|
from BoostBuild import Tester, List
|
|
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.a a"))
|
|
|
|
t.cleanup()
|