From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- src/boost/tools/build/test/core_bindrule.py | 45 +++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100755 src/boost/tools/build/test/core_bindrule.py (limited to 'src/boost/tools/build/test/core_bindrule.py') diff --git a/src/boost/tools/build/test/core_bindrule.py b/src/boost/tools/build/test/core_bindrule.py new file mode 100755 index 000000000..bd1682bf5 --- /dev/null +++ b/src/boost/tools/build/test/core_bindrule.py @@ -0,0 +1,45 @@ +#!/usr/bin/python + +# Copyright 2001 Dave Abrahams +# Copyright 2011 Steven Watanabe +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE.txt or https://www.bfgroup.xyz/b2/LICENSE.txt) + +import BoostBuild +import os + +t = BoostBuild.Tester(["-d1"], pass_toolset=0) + +t.write("subdir1/file-to-bind", "# This file intentionally left blank") + +t.write("file.jam", """\ +rule do-nothing ( target : source ) +{ + DEPENDS $(target) : $(source) ; +} +actions quietly do-nothing { } + +# Make a non-file target which depends on a file that exists +NOTFILE fake-target ; +SEARCH on file-to-bind = subdir1 ; + +do-nothing fake-target : file-to-bind ; + +# Set jam up to call our bind-rule +BINDRULE = bind-rule ; + +rule bind-rule ( target : path ) +{ + ECHO "found:" $(target) at $(path) ; +} + +DEPENDS all : fake-target ; +""") + +t.run_build_system(["-ffile.jam"], stdout="""\ +found: all at all +found: file-to-bind at subdir1%sfile-to-bind +...found 3 targets... +""" % os.sep) + +t.cleanup() -- cgit v1.2.3