]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/tools/build/test/composite.py
update sources to v12.2.3
[ceph.git] / ceph / src / boost / tools / build / test / composite.py
CommitLineData
7c673cae
FG
1#!/usr/bin/python
2
3# Copyright 2003 Vladimir Prus
4# Distributed under the Boost Software License, Version 1.0.
5# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
6
7# Test that composite properties are handled correctly.
8
9import BoostBuild
10
11t = BoostBuild.Tester(use_test_config=False)
12
13t.write("jamroot.jam", """
14exe hello : hello.cpp : <variant>release ;
15""")
16
17t.write("hello.cpp", """
18int main() {}
19""")
20
21t.run_build_system()
22
b32b8144 23t.expect_addition("bin/$toolset/release*/hello.exe")
7c673cae
FG
24
25t.cleanup()