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 | |
---|
5 | import testing ; |
---|
6 | |
---|
7 | # A number of tests which should succeed |
---|
8 | compile a.cpp ; |
---|
9 | compile-fail b.cpp ; |
---|
10 | link-fail a.cpp : : link-no ; |
---|
11 | link c.cpp : : link-yes ; |
---|
12 | run c.cpp : : : : run-yes ; |
---|
13 | run-fail c.cpp : : : <define>RESULTCODE=1 : run-no ; |
---|
14 | |
---|
15 | # some tests which should fail |
---|
16 | |
---|
17 | compile-fail a.cpp : : fail-compile-no ; |
---|
18 | compile b.cpp : : fail-compile-yes ; |
---|
19 | link a.cpp : : fail-link-yes ; |
---|
20 | link-fail c.cpp : : fail-link-no ; |
---|
21 | run-fail c.cpp : : : : fail-run-no ; |
---|
22 | run 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. |
---|
26 | link-fail b.cpp : : fail-link-no-dependency ; |
---|
Note: See
TracBrowser
for help on using the repository browser.