From 19fcec84d8d7d21e796c7624e521b60d28ee21ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 20:45:59 +0200 Subject: Adding upstream version 16.2.11+ds. Signed-off-by: Daniel Baumann --- src/boost/tools/build/test/double_loading.py | 31 ++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/boost/tools/build/test/double_loading.py (limited to 'src/boost/tools/build/test/double_loading.py') diff --git a/src/boost/tools/build/test/double_loading.py b/src/boost/tools/build/test/double_loading.py new file mode 100644 index 000000000..c708b00f7 --- /dev/null +++ b/src/boost/tools/build/test/double_loading.py @@ -0,0 +1,31 @@ +#!/usr/bin/python + +# Copyright 2003 Vladimir Prus +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +import BoostBuild + +t = BoostBuild.Tester() + +# Regression test for double loading of the same Jamfile. +t.write("jamroot.jam", "") +t.write("jamfile.jam", "build-project subdir ;") +t.write("subdir/jamfile.jam", 'ECHO "Loaded subdir" ;') + +t.run_build_system(subdir="subdir") +t.expect_output_lines("Loaded subdir") + + +# Regression test for a more contrived case. The top-level Jamfile refers to +# subdir via use-project, while subdir's Jamfile is being loaded. The +# motivation why use-project referring to subprojects is useful can be found +# at: http://article.gmane.org/gmane.comp.lib.boost.build/3906 +t.write("jamroot.jam", "") +t.write("jamfile.jam", "use-project /subdir : subdir ;") +t.write("subdir/jamfile.jam", "project subdir ;") + +t.run_build_system(subdir="subdir"); + +t.cleanup() -- cgit v1.2.3