mirror of
https://github.com/boostorg/boost.git
synced 2025-04-06 14:05:01 +00:00
Require that the library check targets use to host OS as the target OS.
This has the effect of only using the host OS python interpreter when running the tests.
This commit is contained in:
parent
c2fc63d75a
commit
11f53cf59a
1 changed files with 6 additions and 0 deletions
|
@ -15,6 +15,7 @@ import project ;
|
|||
import regex ;
|
||||
import modules ;
|
||||
import path ;
|
||||
import feature ;
|
||||
|
||||
local check-libs-only = [ MATCH "^--(check-libs-only)" : [ modules.peek : ARGV ] ] ;
|
||||
local check-libs-only-targets = ;
|
||||
|
@ -24,6 +25,9 @@ local rule run-tests ( root : tests * )
|
|||
{
|
||||
local limit-tests = [ MATCH "^--limit-tests=(.*)" : [ modules.peek : ARGV ] ] ;
|
||||
local location = [ project.attribute $(__name__) location ] ;
|
||||
# We only run the check library test when host-os == target-os.
|
||||
# Hence we need that information.
|
||||
local host-os-default = [ feature.defaults <host-os> ] ;
|
||||
for local test in $(tests)
|
||||
{
|
||||
local library = [ path.parent $(test) ] ;
|
||||
|
@ -47,6 +51,7 @@ local rule run-tests ( root : tests * )
|
|||
local test_module = [ project.find ../$(root)/$(test) : $(location) ] ;
|
||||
modules.poke $(test_module) : __LIBRARY__ : $(root)/$(library) ;
|
||||
modules.poke $(test_module) : __JAMFILE__ : [ modules.peek project : JAMFILE ] ;
|
||||
modules.poke $(test_module) : __REQUIRE__ : <target-os>$(host-os-default:G=) ;
|
||||
project.push-current [ project.target $(test_module) ] ;
|
||||
module $(test_module)
|
||||
{
|
||||
|
@ -59,6 +64,7 @@ local rule run-tests ( root : tests * )
|
|||
<testing.arg>--library=$(__LIBRARY__)
|
||||
<testing.arg>--jamfile=\"$(__JAMFILE__:J=;)\"
|
||||
<testing.arg>organization
|
||||
$(__REQUIRE__)
|
||||
:
|
||||
__boost_check_library__ ;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue