]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/tools/build/test/example_libraries.py
update sources to v12.2.3
[ceph.git] / ceph / src / boost / tools / build / test / example_libraries.py
CommitLineData
7c673cae
FG
1#!/usr/bin/python
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 'libraries' example.
9
10import BoostBuild
11
12t = BoostBuild.Tester(use_test_config=False)
13
14t.set_tree("../example/libraries")
15
16t.run_build_system()
17
b32b8144
FG
18t.expect_addition(["app/bin/$toolset/debug*/app.exe",
19 "util/foo/bin/$toolset/debug*/bar.dll"])
7c673cae
FG
20
21t.cleanup()