mirror of
https://github.com/boostorg/build.git
synced 2026-02-01 20:32:17 +00:00
'toolset' and 'threading'. The reason is that current link-compatibility check is way too simple minded and produces bogus warnings. For example, linking MT library into single threaded application is OK. Likewise, some toolsets are link-compatible. We might need a better mechanism, but for now just make the feature link-compatible. Useless warnings are much worse than failure to report link-incompatibility in some cases. [SVN r22949]
64 lines
1.5 KiB
Python
64 lines
1.5 KiB
Python
#!/usr/bin/python
|
|
|
|
from BoostBuild import Tester
|
|
import os
|
|
from string import strip, find
|
|
|
|
t = Tester(translate_suffixes=0)
|
|
|
|
|
|
t.set_tree("project-test4")
|
|
|
|
t.run_build_system()
|
|
|
|
t.expect_addition("bin/$toolset/debug/a.obj")
|
|
t.expect_content("bin/$toolset/debug/a.obj",
|
|
"""$toolset/debug/include-everything
|
|
a.cpp
|
|
""")
|
|
|
|
t.expect_addition("bin/$toolset/debug/a.exe")
|
|
t.expect_content("bin/$toolset/debug/a.exe",
|
|
"$toolset/debug/include-everything\n" +
|
|
"bin/$toolset/debug/a.obj lib/bin/$toolset/debug/optimization-speed/b.obj\n"
|
|
)
|
|
|
|
t.expect_addition("lib/bin/$toolset/debug/optimization-speed/b.obj")
|
|
t.expect_content("lib/bin/$toolset/debug/optimization-speed/b.obj",
|
|
"""$toolset/debug/include-everything/optimization-speed
|
|
lib/b.cpp
|
|
""")
|
|
|
|
t.expect_addition("bin/$toolset/debug/b.exe")
|
|
t.expect_content("bin/$toolset/debug/b.exe",
|
|
"$toolset/debug/define-MACROS/include-everything\n" +
|
|
"bin/$toolset/debug/a.obj\n"
|
|
)
|
|
|
|
|
|
t.copy("lib/Jamfile3", "lib/Jamfile")
|
|
|
|
# Link-compatibility check for rtti is disabled...
|
|
#t.run_build_system(status=None)
|
|
#t.fail_test(find(t.stdout(),
|
|
#"""warning: targets produced from b.obj are link incompatible
|
|
#warning: with main target a.exe""") !=-0)
|
|
|
|
# Test that if we specified composite property in target reference,
|
|
# everything works OK.
|
|
|
|
t.copy("lib/Jamfile1", "lib/Jamfile")
|
|
t.copy("Jamfile5", "Jamfile")
|
|
|
|
t.run_build_system()
|
|
|
|
t.expect_addition("lib/bin/$toolset/release/b.obj")
|
|
|
|
t.expect_content("bin/$toolset/debug/a.exe",
|
|
"$toolset/debug/include-everything\n" +
|
|
"bin/$toolset/debug/a.obj lib/bin/$toolset/release/b.obj\n"
|
|
)
|
|
|
|
|
|
t.cleanup()
|