1#!/usr/local/bin/python3.8
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
23t.expect_addition("bin/$toolset/release*/hello.exe")
24
25t.cleanup()
26