Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/tools/build/v2/test/example_qt4.py @ 29

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

updated boost from 1_33_1 to 1_34_1

File size: 671 bytes
Line 
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 'qt4' examples.
9from BoostBuild import Tester, List
10
11# Create a temporary working directory
12t = Tester()
13
14t.set_tree("../example/qt/qt4/hello")
15t.run_build_system()
16t.expect_addition(["bin/$toolset/debug/arrow"])
17
18t.set_tree("../example/qt/qt4/moccable-cpp")
19t.run_build_system()
20t.expect_addition(["bin/$toolset/debug/main"])
21
22t.set_tree("../example/qt/qt4/uic")
23t.run_build_system()
24t.expect_addition(["bin/$toolset/debug/hello"])
25
26t.cleanup()
Note: See TracBrowser for help on using the repository browser.