Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_34_1/libs/type_traits/test/Jamfile.v2 @ 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: 673 bytes
Line 
1# copyright John Maddock 2004
2# Use, modification and distribution are subject to the
3# Boost Software License, Version 1.0. (See accompanying file
4# LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6# bring in the rules for testing
7import testing ;
8
9# type_traits in V1 seem to have two modes: standalone, triggered
10# by a command line option, and a regular. For now, just imitate
11# regular               
12
13rule all-tests {
14     local result ;
15     for local source in [ glob *_test.cpp ] udt_specialisations.cpp
16     {
17         result += [ run $(source) ] ;
18     }
19     return $(result) ;     
20}
21           
22test-suite type_traits : [ all-tests ] ;
23
24
25
Note: See TracBrowser for help on using the repository browser.