From 5cef38cfc3712af1e60de367c46429521bbe9341 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Thu, 1 Jul 2010 15:55:48 +0000 Subject: [PATCH] Update the type_traits library to handle rvalue references. Add is_lvalue_reference and is_rvalue_reference traits. [SVN r63486] --- test/Jamfile.v2 | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index cde1be0b..343db03a 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -60,6 +60,30 @@ test_overloads.cpp test_operators.cpp ; +lib boost_regex_recursive : + ../src/c_regex_traits.cpp + ../src/cpp_regex_traits.cpp + ../src/cregex.cpp + ../src/fileiter.cpp + ../src/icu.cpp + ../src/instances.cpp + ../src/posix_api.cpp + ../src/regex.cpp + ../src/regex_debug.cpp + ../src/regex_raw_buffer.cpp + ../src/regex_traits_defaults.cpp + ../src/static_mutex.cpp + ../src/w32_regex_traits.cpp + ../src/wc_regex_traits.cpp + ../src/wide_posix_api.cpp + ../src/winstances.cpp + ../src/usinstances.cpp + : + BOOST_REGEX_RECURSIVE=1 + shared:BOOST_REGEX_DYN_LINK=1 + : + ; + local regress-sources = regress/$(R_SOURCE) ; test-suite regex @@ -142,6 +166,14 @@ test-suite regex : # test name captures_test ] + +[ run regress/$(R_SOURCE) .//boost_regex_recursive + ../build//icu_options + : # command line + : # input files + : # requirements + BOOST_REGEX_RECURSIVE=1 + : regex_regress_recursive ] ; - + build-project ../example ;