2
0
mirror of https://github.com/boostorg/move.git synced 2026-01-19 16:32:10 +00:00
Files
move/test/Jamfile.v2
2024-07-20 19:40:42 -05:00

35 lines
768 B
Plaintext

##############################################################################
##
## (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)
##
##
##############################################################################
import testing ;
project : requirements
<library>/boost/core//boost_core
<library>/boost/container//boost_container
;
rule test_all
{
local all_rules = ;
for local fileb in [ glob *.cpp ]
{
all_rules += [ run $(fileb)
: # additional args
: # test-files
: # requirements
] ;
}
return $(all_rules) ;
}
test-suite move_test : [ test_all r ] ;