mirror of
https://github.com/boostorg/build.git
synced 2026-02-12 12:02:24 +00:00
31 lines
1023 B
Python
31 lines
1023 B
Python
#!/usr/bin/python
|
|
|
|
# Copyright 2003 Dave Abrahams
|
|
# Copyright 2002, 2003, 2005 Vladimir Prus
|
|
# Distributed under the Boost Software License, Version 1.0.
|
|
# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
import BoostBuild
|
|
|
|
t = BoostBuild.Tester()
|
|
|
|
t.set_tree("generators-test")
|
|
|
|
t.run_build_system()
|
|
|
|
t.expect_addition( "bin/$toolset/debug/" * BoostBuild.List( "a.obj b.obj c.h "
|
|
+ "c.cpp c.obj d_parser.whl d_lexer.dlp d_parser.cpp d_lexer.cpp "
|
|
+ "d_parser.lr0 d_parser.h d_parser_symbols.h x.c x.obj y.x1 y.x2 y.cpp "
|
|
+ "y.obj e.marked_cpp e.positions e.target_cpp e.obj"))
|
|
t.expect_addition("bin/$toolset/debug/a.exe")
|
|
t.expect_addition(["lib/bin/$toolset/debug/c.obj",
|
|
"lib/bin/$toolset/debug/auxilliary.lib"])
|
|
|
|
t.run_build_system(subdir='lib')
|
|
t.expect_addition(["lib/bin/$toolset/debug/auxilliary2.dll"])
|
|
|
|
t.run_build_system(subdir='lib', extra_args="link=static")
|
|
t.expect_addition(["lib/bin/$toolset/debug/link-static/auxilliary2.lib"])
|
|
|
|
t.cleanup()
|