2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-19 16:32:16 +00:00

libs/python/test/Jamfile.v2: moving "rule require-windows" block up to avoid bjam syntax error

[SVN r61086]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2010-04-05 21:28:30 +00:00
parent a7c16bf695
commit 78ec0d12db

View File

@@ -37,6 +37,13 @@ rule py-compile-fail ( sources * )
return [ compile-fail $(sources) /boost/python//boost_python ] ;
}
rule require-windows ( properties * )
{
if ! <target-os>windows in $(properties)
{
return <build>no ;
}
}
test-suite python
:
@@ -184,14 +191,6 @@ bpl-test crossmod_opaque
# bpl-test bienstman5 ;
# }
rule require-windows ( properties * )
{
if ! <target-os>windows in $(properties)
{
return <build>no ;
}
}
[ bpl-test calling_conventions : : <conditional>@require-windows ]
[ bpl-test calling_conventions_mf : : <conditional>@require-windows ]