Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/tools/build/v2/test/v1-testing/Jamfile @ 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: 812 bytes
Line 
1# Copyright 2002, 2003 Dave Abrahams
2# Distributed under the Boost Software License, Version 1.0.
3# (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
4
5import testing ;
6
7# A number of tests which should succeed
8compile a.cpp ;
9compile-fail b.cpp ;
10link-fail a.cpp : : link-no ;
11link c.cpp : : link-yes ;
12run c.cpp : : : : run-yes ;
13run-fail c.cpp : : : <define>RESULTCODE=1 : run-no ;
14
15# some tests which should fail
16
17compile-fail a.cpp : : fail-compile-no ;
18compile b.cpp : : fail-compile-yes ;
19link a.cpp : : fail-link-yes ;
20link-fail c.cpp : : fail-link-no ;
21run-fail c.cpp : : : : fail-run-no ;
22run c.cpp : : : <define>RESULTCODE=1 : fail-run-yes ;
23
24# Make sure we still fail if a dependency of an expected-failure test
25# fails.
26link-fail b.cpp : : fail-link-no-dependency ;
Note: See TracBrowser for help on using the repository browser.