Brian Silverman | 1f5d398 | 2018-08-04 23:37:52 -0700 | [diff] [blame^] | 1 | ############################################################################## |
| 2 | ## |
| 3 | ## (C) Copyright Ion Gaztanaga 2008-2009 Distributed under the Boost |
| 4 | ## Software License, Version 1.0. (See accompanying file |
| 5 | ## LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) |
| 6 | ## |
| 7 | ## |
| 8 | ############################################################################## |
| 9 | # |
| 10 | import testing ; |
| 11 | |
| 12 | rule test_all |
| 13 | { |
| 14 | local all_rules = ; |
| 15 | |
| 16 | for local fileb in [ glob *.cpp ] |
| 17 | { |
| 18 | all_rules += [ run $(fileb) |
| 19 | : # additional args |
| 20 | : # test-files |
| 21 | : # requirements |
| 22 | ] ; |
| 23 | } |
| 24 | |
| 25 | return $(all_rules) ; |
| 26 | } |
| 27 | |
| 28 | test-suite move_example : [ test_all r ] |
| 29 | : <link>static |
| 30 | ; |
| 31 | |