1#!/usr/local/bin/python3.8
2
3# Copyright (C) FILL SOMETHING HERE 2006.
4# Distributed under the Boost Software License, Version 1.0. (See
5# accompanying file LICENSE_1_0.txt or copy at
6# http://www.boost.org/LICENSE_1_0.txt)
7
8# This file is template for B2 tests. It creates a simple project that
9# builds one exe from one source, and checks that the exe is really created.
10
11import BoostBuild
12
13
14# Create a temporary working directory.
15t = BoostBuild.Tester()
16
17# Create the needed files.
18t.write("jamroot.jam", """
19exe hello : hello.cpp ;
20""")
21
22t.write("hello.cpp", """
23int main() {}
24"""
25
26# Run the build.
27t.run_build_system()
28
29# First, create a list of three pathnames.
30file_list = BoostBuild.List("bin/$toolset/debug*/") * \
31    BoostBuild.List("hello.exe hello.obj")
32# Second, assert that those files were added as result of the last build system
33# invocation.
34t.expect_addition(file_list)
35
36# Invoke the build system once again.
37t.run_build_system("clean")
38# Check if the files added previously were removed.
39t.expect_removal(file_list)
40
41# Remove temporary directories.
42t.cleanup()
43