From bde8dc0cc475316b9cc872c535f1f742d38ca8bb Mon Sep 17 00:00:00 2001 From: oliver Kowalke Date: Fri, 17 Jun 2016 08:20:50 +0200 Subject: [PATCH] fix test/Jamfile.v2 requirements --- test/Jamfile.v2 | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 3bfc713..0692048 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -26,7 +26,8 @@ project boost/coroutine2/test multi ; -run test_coroutine.cpp : +test-suite minimal : +[ run test_coroutine.cpp : : : [ requires cxx11_auto_declarations cxx11_constexpr @@ -38,4 +39,12 @@ run test_coroutine.cpp : cxx11_nullptr cxx11_rvalue_references cxx11_template_aliases - cxx11_variadic_templates ] ; + cxx11_variadic_templates ] ] ; + +test-suite full : + minimal ; + +test-suite extra ; + +explicit minimal ; +explicit extra ;