| 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 | |
|---|
| 8 | subproject libs/test/example/cla ; |
|---|
| 9 | |
|---|
| 10 | # bring in the rules for testing |
|---|
| 11 | import testing ; |
|---|
| 12 | |
|---|
| 13 | # Make tests run by default. |
|---|
| 14 | DEPENDS all : test ; |
|---|
| 15 | |
|---|
| 16 | rule 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 | |
|---|
| 24 | test-suite "cla_examples" |
|---|
| 25 | [ boost-runtime-param-example assign_to ] |
|---|
| 26 | [ boost-runtime-param-example basic_float ] |
|---|
| 27 | [ boost-runtime-param-example basic_int ] |
|---|
| 28 | [ boost-runtime-param-example basic_list ] |
|---|
| 29 | [ boost-runtime-param-example basic_string ] |
|---|
| 30 | [ boost-runtime-param-example basic_udt ] |
|---|
| 31 | [ boost-runtime-param-example char_parameter ] |
|---|
| 32 | [ boost-runtime-param-example custom_handler ] |
|---|
| 33 | [ boost-runtime-param-example custom_interpreter ] |
|---|
| 34 | [ boost-runtime-param-example custom_parameter ] |
|---|
| 35 | [ boost-runtime-param-example default_value ] |
|---|
| 36 | [ boost-runtime-param-example dual_name ] |
|---|
| 37 | [ boost-runtime-param-example global ] |
|---|
| 38 | [ boost-runtime-param-example guess_name ] |
|---|
| 39 | [ boost-runtime-param-example help ] |
|---|
| 40 | [ boost-runtime-param-example ignore_mismatch ] |
|---|
| 41 | [ boost-runtime-param-example input_separator ] |
|---|
| 42 | [ boost-runtime-param-example multiplicable ] |
|---|
| 43 | [ boost-runtime-param-example name ] |
|---|
| 44 | [ boost-runtime-param-example optional ] |
|---|
| 45 | [ boost-runtime-param-example optional_value ] |
|---|
| 46 | [ boost-runtime-param-example positional ] |
|---|
| 47 | [ boost-runtime-param-example prefix ] |
|---|
| 48 | [ boost-runtime-param-example reference ] |
|---|
| 49 | [ boost-runtime-param-example remainder ] |
|---|
| 50 | [ boost-runtime-param-example separator ] |
|---|
| 51 | [ boost-runtime-param-example usage ] |
|---|
| 52 | [ boost-runtime-param-example wide_string ] |
|---|
| 53 | ; |
|---|