Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/test/example/env/Jamfile @ 12

Last change on this file since 12 was 12, checked in by landauf, 17 years ago

added boost

  • Property svn:executable set to *
File size: 1003 bytes
Line 
1#  (C) Copyright Gennadiy Rozental 2001-2005.
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#  See http://www.boost.org/libs/test for the library home page.
7
8subproject libs/test/example/env ;
9
10# bring in the rules for testing
11import testing ;
12
13# Make tests run by default.
14DEPENDS all : test ;
15
16rule boost-runtime-param-example ( example-name  )
17{
18   return [ compile $(example-name).cpp
19            : <stlport-iostream>on <borland><*><cxxflags>-w-8080
20            : $(example-name)
21          ] ;
22}
23
24test-suite "cla_examples"
25    [ boost-runtime-param-example custom_interpreter_env ] 
26    [ boost-runtime-param-example env_var_default_value ]
27    [ boost-runtime-param-example environment_ex ]
28    [ boost-runtime-param-example global_id ]
29    [ boost-runtime-param-example modifier_combination ]
30    [ boost-runtime-param-example variable_ex ]
31;
Note: See TracBrowser for help on using the repository browser.