Files
move/test/Jamfile.v2

35 lines
768 B
Plaintext
Raw Permalink Normal View History

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