1#!/usr/local/bin/python3.8
2
3# Copyright (C) Vladimir Prus 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# Test the 'customization' example.
9
10import BoostBuild
11
12t = BoostBuild.Tester()
13
14t.set_tree("../example/customization")
15
16t.run_build_system()
17
18t.expect_addition(["bin/$toolset/debug*/codegen.exe",
19                   "bin/$toolset/debug*/usage.cpp"])
20
21t.cleanup()
22