Basic alias rule test.
(t)
| 16 | ############################################################################### |
| 17 | |
| 18 | def test_alias_rule(t): |
| 19 | """Basic alias rule test.""" |
| 20 | |
| 21 | t.write("jamroot.jam", """\ |
| 22 | exe a : a.cpp ; |
| 23 | exe b : b.cpp ; |
| 24 | exe c : c.cpp ; |
| 25 | |
| 26 | alias bin1 : a ; |
| 27 | alias bin2 : a b ; |
| 28 | |
| 29 | alias src : s.cpp ; |
| 30 | exe hello : hello.cpp src ; |
| 31 | """) |
| 32 | |
| 33 | t.write("a.cpp", "int main() {}\n") |
| 34 | t.copy("a.cpp", "b.cpp") |
| 35 | t.copy("a.cpp", "c.cpp") |
| 36 | t.copy("a.cpp", "hello.cpp") |
| 37 | t.write("s.cpp", "") |
| 38 | |
| 39 | # Check that targets to which "bin1" refers are updated, and only those. |
| 40 | t.run_build_system(["bin1"]) |
| 41 | t.expect_addition(BoostBuild.List("bin/$toolset/debug/") * "a.exe a.obj") |
| 42 | t.expect_nothing_more() |
| 43 | |
| 44 | # Try again with "bin2" |
| 45 | t.run_build_system(["bin2"]) |
| 46 | t.expect_addition(BoostBuild.List("bin/$toolset/debug/") * "b.exe b.obj") |
| 47 | t.expect_nothing_more() |
| 48 | |
| 49 | # Try building everything, making sure 'hello' target is created. |
| 50 | t.run_build_system() |
| 51 | t.expect_addition(BoostBuild.List("bin/$toolset/debug/") * \ |
| 52 | "hello.exe hello.obj") |
| 53 | t.expect_addition("bin/$toolset/debug/s.obj") |
| 54 | t.expect_addition(BoostBuild.List("bin/$toolset/debug/") * "c.exe c.obj") |
| 55 | t.expect_nothing_more() |
| 56 | |
| 57 | |
| 58 | ############################################################################### |
no test coverage detected