-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't skip install targets if there's <build>no in ureqs (#113)
- Loading branch information
1 parent
371b47a
commit 78fd284
Showing
3 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/usr/bin/python | ||
|
||
# Copyright 2021 Dmitry Arkhipov ([email protected]) | ||
# Distributed under the Boost Software License, Version 1.0. | ||
# (See accompanying file LICENSE.txt or https://www.bfgroup.xyz/b2/LICENSE.txt) | ||
|
||
# Check that <build>no in usage-requirements of dependencies does not affect | ||
# install rule, i.e. a skipped installed target does not affect insallation of | ||
# other targets. | ||
|
||
import BoostBuild | ||
|
||
t = BoostBuild.Tester() | ||
|
||
t.write("a.cpp", "int main() {}\n") | ||
|
||
t.write("jamroot.jam", """ | ||
make x : : maker : <build>no ; | ||
exe a : a.cpp ; | ||
install install : x a ; | ||
""") | ||
|
||
t.run_build_system() | ||
t.expect_addition("install/a.exe") | ||
|
||
t.cleanup() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters