mirror of
https://github.com/boostorg/boost.git
synced 2025-04-05 21:45:00 +00:00
Avoid errors when tool submodules do not exist.
This commit is contained in:
parent
c4add8538f
commit
b262325afe
1 changed files with 12 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
# Copyright 2002. Dave Abrahams
|
||||
# Copyright 2016. Rene Rivera
|
||||
# Copyright 2016-2018. Rene Rivera
|
||||
# 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)
|
||||
|
@ -197,7 +197,17 @@ run-tests libs : $(libs-to-test)/test ;
|
|||
# Tests from Jamfiles in tools/
|
||||
# Please keep these in alphabetical order
|
||||
|
||||
local tools-to-test = bcp check_build quickbook ;
|
||||
local tools-to-test = ;
|
||||
bcp check_build quickbook ;
|
||||
for local tooldir in bcp check_build quickbook
|
||||
{
|
||||
local jamfile = [ modules.peek project : JAMFILE ] ;
|
||||
local jamfiles = [ path.glob [ path.join tools $(tooldir) test ] : $(jamfile) ] ;
|
||||
if $(jamfiles)
|
||||
{
|
||||
tools-to-test += $(tooldir) ;
|
||||
}
|
||||
}
|
||||
|
||||
run-tests tools : $(tools-to-test)/test ;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue