2018-01-12 21:47:58 +01:00
|
|
|
##############################################################################
|
|
|
|
##
|
|
|
|
## (C) Copyright Ion Gaztanaga 2008-2009 Distributed under the Boost
|
|
|
|
## Software License, Version 1.0. (See accompanying file
|
|
|
|
## LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
##
|
|
|
|
##
|
|
|
|
##############################################################################
|
2021-10-05 21:37:46 +02:00
|
|
|
|
|
|
|
import testing ;
|
|
|
|
|
2018-01-12 21:47:58 +01:00
|
|
|
rule test_all
|
|
|
|
{
|
|
|
|
local all_rules = ;
|
|
|
|
|
|
|
|
for local fileb in [ glob *.cpp ]
|
|
|
|
{
|
2021-10-05 21:37:46 +02:00
|
|
|
all_rules += [ run $(fileb)
|
2018-01-12 21:47:58 +01:00
|
|
|
: # additional args
|
|
|
|
: # test-files
|
|
|
|
: # requirements
|
|
|
|
] ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $(all_rules) ;
|
|
|
|
}
|
|
|
|
|
2021-10-05 21:37:46 +02:00
|
|
|
test-suite move_test : [ test_all r ] ;
|
2018-01-12 21:47:58 +01:00
|
|
|
|