1#!/usr/local/bin/python3.8
2
3# Copyright 2002, 2003 Dave Abrahams
4# Copyright 2002, 2003 Vladimir Prus
5# Distributed under the Boost Software License, Version 1.0.
6# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
7
8import BoostBuild
9
10t = BoostBuild.Tester()
11
12t.set_tree("test2")
13
14file_list = 'bin/$toolset/debug*/' * \
15    BoostBuild.List("foo foo.o")
16
17t.run_build_system("-sBOOST_BUILD_PATH=" + t.original_workdir + "/..")
18t.expect_addition(file_list)
19
20
21t.write("foo.cpp", "int main() {}\n")
22t.run_build_system("-d2 -sBOOST_BUILD_PATH=" + t.original_workdir + "/..")
23t.expect_touch(file_list)
24
25t.cleanup()
26