summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/build/test/install_build_no.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/tools/build/test/install_build_no.py')
-rwxr-xr-xsrc/boost/tools/build/test/install_build_no.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/boost/tools/build/test/install_build_no.py b/src/boost/tools/build/test/install_build_no.py
new file mode 100755
index 000000000..0ccf3c5cc
--- /dev/null
+++ b/src/boost/tools/build/test/install_build_no.py
@@ -0,0 +1,26 @@
+#!/usr/bin/python
+
+# Copyright 2021 Dmitry Arkhipov (grisumbras@gmail.com)
+# 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()