From 5243bfef42c923f5c0a4a4398543dd896afeae57 Mon Sep 17 00:00:00 2001 From: Oliver Kowalke Date: Tue, 6 Feb 2018 19:44:47 +0100 Subject: [PATCH] disable unit-tests using ucontext for MacOS X --- test/Jamfile.v2 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index df20502..de8436d 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -31,7 +31,11 @@ project boost/coroutine2/test rule configure-impl ( properties * ) { local result ; - if ( ! ( windows in $(properties) ) ) + if ( darwin in $(properties) ) + { + result = no ; + } + else if ( ! ( windows in $(properties) ) ) { result = ucontext ; }