mirror of
https://github.com/boostorg/build.git
synced 2026-02-02 08:42:13 +00:00
- Allow to specify toolset name on the command line - Expand $toolset in paths - Pass toolset name to bjam invocations. [SVN r17555]
18 lines
320 B
Python
18 lines
320 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/$toolset/debug/"
|
|
* (List("a.o b.o b.dll a.exe")))
|
|
|
|
|
|
t.cleanup()
|