mirror of
https://github.com/boostorg/build.git
synced 2026-02-13 12:22:17 +00:00
24 lines
813 B
Python
24 lines
813 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.exe a.obj "
|
|
"b.obj c.h c.cpp c.obj d_parser.whl d_lexer.dlp d_parser.cpp d_lexer.cpp "
|
|
"d_lexer.obj d_parser.lr0 d_parser.h d_parser.obj 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 "
|
|
"e.exe f.exe obj_1.obj obj_2.obj"))
|
|
t.expect_addition("lib/bin/$toolset/debug/" * BoostBuild.List("c.obj "
|
|
"auxilliary.lib"))
|
|
t.expect_nothing_more()
|
|
|
|
t.cleanup()
|