2
0
mirror of https://github.com/boostorg/build.git synced 2026-01-26 06:22:26 +00:00
Files
build/test/generators_test.py
Vladimir Prus 77817cb920 Making more tests work on windows.
* new/builtin.jam: The lib suffix in not "obj", even on windows.

* test/BoostBuild.py: (lib_suffix): New variable.
* test/generators_test.py: Use lib_suffix.


[SVN r16793]
2003-01-08 13:05:30 +00:00

36 lines
816 B
Python

#!/usr/bin/python
from BoostBuild import Tester, List, exe_suffix, dll_suffix
import os
t = Tester()
t.set_tree("generators-test")
t.run_build_system()
t.expect_addition(
"bin/gcc/debug/"
* (
List(
"a.o b.o c.h c.cpp c.o d_parser.whl d_lexer.dlp d_parser.cpp d_lexer.cpp "
+ "d_parser.lr0 x.c x.o y.x1 y.x2 "
+ "y.cpp y.o e.marked.cpp e.positions e.target.cpp e.o")
+ List("a e") * exe_suffix
)
)
t.expect_addition(["lib/bin/gcc/debug/c.o",
"lib/bin/gcc/debug/auxilliary.a",
])
t.run_build_system(subdir='lib')
t.expect_addition(["lib/bin/gcc/debug/auxilliary2" + dll_suffix])
t.run_build_system(subdir='lib', extra_args="link=static")
t.expect_addition(["lib/bin/gcc/debug/link-static/auxilliary2.a"])
t.cleanup()