Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/tools/build/v2/test/composite.py @ 32

Last change on this file since 32 was 29, checked in by landauf, 17 years ago

updated boost from 1_33_1 to 1_34_1

File size: 557 bytes
Line 
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.
8from BoostBuild import Tester, List
9
10t = Tester()
11
12t.write("project-root.jam", "")
13t.write("Jamfile", """
14exe hello : hello.cpp : <variant>release ;
15""")
16t.write("hello.cpp", """
17int main()
18{
19    return 0;
20}
21
22""")
23
24t.run_build_system()
25
26t.expect_addition("bin/$toolset/release/hello.exe")
27
28
29t.cleanup()
Note: See TracBrowser for help on using the repository browser.