Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/tools/build/v2/test/template.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: 1.0 KB
Line 
1#!/usr/bin/python
2
3#  Copyright (C) FILL SOMETHING HERE 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#  This file is template for Boost.Build tests. It creates a simple
9#  project that builds one exe from one source, and checks that the exe
10#  is really created.
11from BoostBuild import Tester, List
12
13# Create a temporary working directory
14t = Tester()
15
16# Create the needed files
17t.write("Jamroot", """
18exe hello : hello.cpp ;
19""")
20t.write("hello.cpp", """
21int main()
22{
23    return 0;
24}
25
26""")
27
28t.run_build_system()
29
30# First, create a list of three pathnames
31file_list = List("bin/$toolset/debug/") * List("hello.exe hello.obj")
32# Second, assert that those files were added as result of the last build system invocation.
33t.expect_addition(file_list)
34
35# Invoke the build system once again
36t.run_build_system("clean")
37# Check if the files added previously were removed.
38t.expect_removal(file_list)
39
40# Remove temporary directories
41t.cleanup()
Note: See TracBrowser for help on using the repository browser.