disable unit-tests using ucontext for MacOS X

This commit is contained in:
Oliver Kowalke 2018-02-06 19:44:47 +01:00
parent 49716a54d8
commit 5243bfef42

View File

@ -31,7 +31,11 @@ project boost/coroutine2/test
rule configure-impl ( properties * )
{
local result ;
if ( ! ( <target-os>windows in $(properties) ) )
if ( <target-os>darwin in $(properties) )
{
result = <build>no ;
}
else if ( ! ( <target-os>windows in $(properties) ) )
{
result = <context-impl>ucontext ;
}