diff --git a/string/test/Jamfile b/string/test/Jamfile index 65572a7..0e04280 100644 --- a/string/test/Jamfile +++ b/string/test/Jamfile @@ -10,59 +10,62 @@ subproject libs/algorithm/string/test ; # bring in rules for testing -SEARCH on testing.jam = $(BOOST_BUILD_PATH) ; -include testing.jam ; +import testing ; -test-suite "string_algo" - : [ run - container_test.cpp - : : - : - : container - ] - : [ run - trim_test.cpp - : : - : - : trim - ] - : [ run - conv_test.cpp - : : - : - : conv - ] - : [ run - predicate_test.cpp - : : - : - : predicate - ] - : [ run - find_test.cpp - : : - : - : find - ] - : [ run - split_test.cpp - : : - : - : split - ] - : [ run - replace_test.cpp - : : - : - : replace - ] - : [ run - regex_test.cpp - ../../../regex/build/boost_regex - : : - : - : regex - ] +# Make tests run by default. +DEPENDS all : test ; - ; +{ + test-suite string_algo + : [ run + container_test.cpp + : : + : + : container + ] + : [ run + trim_test.cpp + : : + : + : trim + ] + : [ run + conv_test.cpp + : : + : + : conv + ] + : [ run + predicate_test.cpp + : : + : + : predicate + ] + : [ run + find_test.cpp + : : + : + : find + ] + : [ run + split_test.cpp + : : + : + : split + ] + : [ run + replace_test.cpp + : : + : + : replace + ] + : [ run + regex_test.cpp + ../../../regex/build/boost_regex + : : + : + : regex + ] + ; +}