2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-13 00:12:11 +00:00
Files
build/test/message.py
Rene Rivera 40e7f0e8dd Fix tests to pass on Windows after removing toolset requirements ignore.
Various restructure of test framework handling of paths to avoid duplicate path editing which caused failed tests. Adjust many tests to deal with added subdirectories in build outputs now that toolset requirements are active.
2017-07-02 23:28:48 -05:00

39 lines
819 B
Python
Executable File

#!/usr/bin/python
# Copyright (C) Vladimir Prus 2003.
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
# Test for the regression testing framework.
import BoostBuild
# Create a temporary working directory.
t = BoostBuild.Tester(use_test_config=False)
t.write("Jamroot.jam", """
project
:
: usage-requirements <define>TEST=1
: default-build <link>static
;
message hello : "Hello World!" ;
alias hello : : <link>shared ;
obj test : test.cpp hello : <link>static ;
""")
t.write("test.cpp", """
#ifndef TEST
#error TEST not defined
#endif
""")
t.run_build_system(["test"], stdout="""Hello World!
""")
t.expect_addition("bin/$toolset/link-static*/test.obj")
t.expect_nothing_more()
t.cleanup()