mirror of
https://github.com/boostorg/boost.git
synced 2025-04-07 22:39:25 +00:00
Merge [62051] from the trunk
[SVN r62167]
This commit is contained in:
parent
e9f9ce5fe9
commit
365b1ac4d4
1 changed files with 9 additions and 5 deletions
|
@ -20,7 +20,7 @@ project status
|
|||
import testing ;
|
||||
import modules ;
|
||||
|
||||
local rule run-tests ( tests * )
|
||||
local rule run-tests ( root : tests * )
|
||||
{
|
||||
local limit-tests = [ MATCH "^--limit-tests=(.*)" : [ modules.peek : ARGV ] ] ;
|
||||
for local test in $(tests)
|
||||
|
@ -29,23 +29,23 @@ local rule run-tests ( tests * )
|
|||
{
|
||||
if [ MATCH "^($(limit-tests))" : $(test) ]
|
||||
{
|
||||
build-project ../libs/$(test) ;
|
||||
build-project ../$(root)/$(test) ;
|
||||
}
|
||||
else
|
||||
{
|
||||
use-project /boost/$(test) : ../libs/$(test) ;
|
||||
use-project /boost/$(test) : ../$(root)/$(test) ;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
build-project ../libs/$(test) ;
|
||||
build-project ../$(root)/$(test) ;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# Tests from Jamfiles in individual library test subdirectories
|
||||
# Please keep these in alphabetic order by test-suite name
|
||||
run-tests
|
||||
run-tests libs :
|
||||
accumulators/test # test-suite accumulators
|
||||
algorithm/minmax/test # test-suite algorith/minmax
|
||||
algorithm/string/test # test-suite algorithm/string
|
||||
|
@ -140,3 +140,7 @@ run-tests
|
|||
wave/test/build # test-suite wave
|
||||
xpressive/test # test-suite xpressive
|
||||
;
|
||||
|
||||
run-tests tools :
|
||||
bcp/test
|
||||
;
|
||||
|
|
Loading…
Add table
Reference in a new issue