summaryrefslogtreecommitdiff
path: root/tools/build/v2/test/m1-01.py
blob: 6c42c1eec8171708025dc0c4f8055f8101509c2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/python

# Copyright 2002 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)

# Test the very basic 'make' functionality.

import BoostBuild

t = BoostBuild.Tester()

t.set_tree("test1")

# Check that we can build something.
t.run_build_system("-sTOOLSET=yfc")

t.expect_addition("bin/a.obj/yfc/debug/runtime-link-dynamic/a.obj")
t.expect_addition("bin/a/yfc/debug/runtime-link-dynamic/a")
t.expect_nothing_more()

t.fail(t.read("bin/a.obj/yfc/debug/runtime-link-dynamic/a.obj") !=\
"""
<optimization>off <rtti>on <runtime-link>dynamic <toolset>yfc <variant>debug
a.cpp
""")

t.fail(t.read("bin/a/yfc/debug/runtime-link-dynamic/a") !=\
"""
<optimization>off <rtti>on <runtime-link>dynamic <toolset>yfc <variant>debug
<optimization>off <rtti>on <runtime-link>dynamic <toolset>yfc <variant>debug
a.cpp
""")

# Check that we have vanilla target names available.
t.touch("a.cpp")
t.run_build_system("-sTOOLSET a.obj")
t.expect_touch("bin/a.obj/yfc/debug/runtime-link-dynamic/a.obj")
t.expect_no_modification("bin/a/yfc/debug/runtime-link-dynamic/a")


# Check that if a build request cannot be completely matches, a warning is
# issued and a subvariant with link-compatible properties is used.
t.write("jamfile.jam", t.read("jamfile2.jam"))
stdout="""Warning: cannot exactly satisfy request for ./a with properties
    <optimization>off <rtti>on <runtime-link>dynamic <toolset>yfc <variant>debug
Using
    <optimization>space <rtti>on <runtime-link>dynamic <toolset>yfc <variant>debug
instead.
""")
t.run_build_system("-sTOOLSET=yfc", stdout=stdout)

# Check that conflicting link-incompatible requirements prevent building.
t.write("jamfile.jam", t.read("jamfile3.jam"))
stdout="""Warning: cannot satisfy request for ./a with properties
    <optimization>off <rtti>on <runtime-link>dynamic <toolset>yfc <variant>debug
Nothing will be built.
""")
t.run_build_system("-sTOOLSET=yfc", stdout=stdout, status=1)

t.pass_test()