mirror of
https://github.com/boostorg/build.git
synced 2026-02-15 13:02:11 +00:00
168 lines
3.3 KiB
Python
168 lines
3.3 KiB
Python
#!/usr/bin/python
|
|
|
|
from BoostBuild import Tester
|
|
t = Tester()
|
|
|
|
# Test that use requirements on main target work
|
|
t.write("project-root.jam", "import gcc ;")
|
|
t.write("Jamfile", """
|
|
lib b : b.cpp : : : <define>FOO ;
|
|
exe a : a.cpp b ;
|
|
""")
|
|
t.write("b.cpp", "void foo() {}\n")
|
|
t.write("a.cpp", """
|
|
#ifdef FOO
|
|
void foo() {}
|
|
#endif
|
|
int main() { foo(); }
|
|
""")
|
|
|
|
t.run_build_system()
|
|
|
|
t.run_build_system("--clean")
|
|
|
|
# Test that use requirements on main target work, when they are referred using
|
|
# 'dependency' features.
|
|
t.write("project-root.jam", "import gcc ;")
|
|
t.write("Jamfile", """
|
|
lib b : b.cpp : : : <define>FOO ;
|
|
exe a : a.cpp : <dependency>b ;
|
|
""")
|
|
t.write("b.cpp", "void foo() {}\n")
|
|
t.write("a.cpp", """
|
|
#ifdef FOO
|
|
int main() {}
|
|
#endif
|
|
""")
|
|
|
|
t.run_build_system()
|
|
|
|
t.run_build_system("--clean")
|
|
|
|
|
|
# Test that use requirement on project work
|
|
t.write("Jamfile", "exe a : a.cpp lib/b ;")
|
|
t.write("lib/Jamfile", """
|
|
project :
|
|
usage-requirements <define>FOO
|
|
;
|
|
lib b : b.cpp ;
|
|
""")
|
|
t.write("lib/b.cpp", "void foo() {}\n")
|
|
t.run_build_system()
|
|
|
|
# Test that use requirements are inherited correctly
|
|
|
|
t.write("Jamfile", "exe a : a.cpp lib/1/b ;")
|
|
|
|
t.write("a.cpp", """
|
|
#if defined(FOO) && defined(ZOO)
|
|
void foo() {}
|
|
#endif
|
|
int main() { foo(); }
|
|
""")
|
|
|
|
t.write("lib/Jamfile", """
|
|
project :
|
|
usage-requirements <define>FOO
|
|
;
|
|
""")
|
|
|
|
t.write("lib/1/Jamfile", """
|
|
project :
|
|
usage-requirements <define>ZOO
|
|
;
|
|
lib b : b.cpp ;
|
|
""")
|
|
t.write("lib/1/b.cpp", "void foo() {}\n")
|
|
|
|
t.run_build_system()
|
|
t.run_build_system("--clean")
|
|
|
|
# Test that we correctly handle dependency features
|
|
# in use requirements on target
|
|
|
|
t.write("Jamfile", """
|
|
lib b : b.cpp : : : <define>FOO ;
|
|
# Here's the test: we should correctly
|
|
# handle dependency feature and get
|
|
# use requirements from 'b'.
|
|
lib c : c.cpp : : : <library>b ;
|
|
# This will build only if <define>FOO
|
|
# was propagated from 'c'.
|
|
exe a : a.cpp c ;
|
|
""")
|
|
t.write("a.cpp", """
|
|
#ifdef FOO
|
|
void foo();
|
|
#endif
|
|
int main() { foo(); }
|
|
""")
|
|
t.write("c.cpp", "")
|
|
|
|
t.run_build_system()
|
|
t.run_build_system("--clean")
|
|
|
|
# Test correct handling of dependency features in
|
|
# project requirements.
|
|
t.write("Jamfile", """
|
|
exe a : a.cpp lib1/c ;
|
|
""")
|
|
|
|
t.write("lib1/Jamfile", """
|
|
project
|
|
: usage-requirements <library>../lib2/b
|
|
;
|
|
lib c : c.cpp ;
|
|
""")
|
|
t.write("lib1/c.cpp", "")
|
|
|
|
t.write("lib2/Jamfile", """
|
|
lib b : b.cpp : : : <define>FOO ;
|
|
""")
|
|
t.copy("b.cpp", "lib2/b.cpp")
|
|
|
|
t.run_build_system()
|
|
|
|
# Test that dependency feature in use requirements are build
|
|
# with the correct properties
|
|
t.rm(".")
|
|
|
|
t.write("Jamfile", """
|
|
lib main : main.cpp : : : <library>libs/lib1 ;
|
|
exe hello : hello.cpp main ;
|
|
""")
|
|
|
|
t.write("main.cpp", """
|
|
void foo();
|
|
|
|
int main() { foo(); return 0; }
|
|
""")
|
|
|
|
t.write("hello.cpp", "")
|
|
|
|
t.write("project-root.jam", """
|
|
import gcc ;
|
|
""")
|
|
|
|
t.write("libs/a.cpp", """
|
|
void foo() {}
|
|
""")
|
|
|
|
# This library should be build with the same properties as
|
|
# 'main'. There were a bug when they were generated with
|
|
# empty properties, and there were ambiguity between variants.
|
|
t.write("libs/Jamfile", """
|
|
lib lib1 : a_d.cpp : <variant>debug ;
|
|
lib lib1 : a.cpp : <variant>release ;
|
|
""")
|
|
|
|
t.write("libs/a_d.cpp", """
|
|
void foo() {}
|
|
""")
|
|
|
|
t.run_build_system("link=static")
|
|
t.expect_addition("libs/bin/gcc/debug/link-static/a_d.o")
|
|
|
|
t.cleanup()
|