mirror of
https://github.com/boostorg/build.git
synced 2026-02-12 12:02:24 +00:00
* new/builtin.jam: Make <optimization>speed active property and add <define>NDEBUG for it. * test/ndebug.py: New test. [SVN r18250]
105 lines
2.8 KiB
Python
105 lines
2.8 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/define-NDEBUG/include-everything/optimization-speed
|
|
lib/b.cpp
|
|
""")
|
|
|
|
t.expect_addition("bin/$toolset/debug/main-target-b.exe/b.exe")
|
|
t.expect_content("bin/$toolset/debug/main-target-b.exe/b.exe",
|
|
"$toolset/debug/define-MACROS/include-everything\n" +
|
|
"bin/$toolset/debug/a.obj\n"
|
|
)
|
|
|
|
|
|
t.copy("lib/Jamfile2", "lib/Jamfile")
|
|
|
|
expected="""error: Requirements for project at 'lib' conflict with parent's.
|
|
Explanation: link-incompatible properties <threading>single and <threading>multi
|
|
|
|
"""
|
|
t.run_build_system("--no-error-backtrace", stdout=expected, status=None)
|
|
|
|
t.copy("lib/Jamfile3", "lib/Jamfile")
|
|
|
|
t.run_build_system(status=None)
|
|
t.fail_test(find(t.stdout(), "warning: skipped build of lib/b.obj with properties") \
|
|
!= 0)
|
|
|
|
# Check that project can be skipped as well
|
|
t.copy("Jamfile4", "Jamfile")
|
|
|
|
expected="warning: skipping build of project at lib2 due to unsatisfied requirements."
|
|
t.run_build_system("rtti=on")
|
|
t.fail_test(find(t.stdout(), expected) != 0)
|
|
|
|
t.copy("lib2/Jamfile2", "lib2/Jamfile")
|
|
|
|
expected="warning: skipping build of project /mylib at lib2 due to unsatisfied\nrequirements."
|
|
t.run_build_system("rtti=on")
|
|
t.fail_test(find(t.stdout(), expected) != 0)
|
|
|
|
# We don't yet make targets depend on Jamfile, so need to start from scratch
|
|
# The following test is disabled, because of problems related to
|
|
# issue BB10
|
|
|
|
#t.set_tree("project-test4")
|
|
#t.copy("Jamfile2", "Jamfile")
|
|
|
|
#t.run_build_system()
|
|
|
|
#t.expect_addition("bin/$toolset/debug/a_gcc.obj")
|
|
#t.expect_content("bin/$toolset/debug/a_gcc.obj",
|
|
#"""$toolset/debug
|
|
#a_gcc.cpp
|
|
#""")
|
|
|
|
#t.expect_content("bin/$toolset/debug/a.exe",
|
|
#"$toolset/debug\n" +
|
|
#"bin/$toolset/debug/a.obj " +
|
|
#"lib/bin/$toolset/debug/optimization-speed/b.obj " +
|
|
#"bin/$toolset/debug/a_gcc.obj\n"
|
|
#)
|
|
|
|
# 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()
|