diff --git a/minmax/test/Jamfile b/minmax/test/Jamfile index 9b16b51..f5a0197 100644 --- a/minmax/test/Jamfile +++ b/minmax/test/Jamfile @@ -10,14 +10,18 @@ subproject libs/algorithm/minmax/test ; # bring in rules for testing -SEARCH on testing.jam = $(BOOST_BUILD_PATH) ; -include testing.jam ; +import testing ; # Make tests run by default. DEPENDS all : test ; { - test-suite minmax: - [ run minmax_element_test.cpp ] + test-suite minmax + : [ run + minmax_element_test.cpp + : : + : + : minmax_element + ] ; }