From a568d32ba95d182a601bb7f04d4a94d9d8272579 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Br=C3=B6nnimann?= Date: Sun, 4 Jul 2004 22:24:17 +0000 Subject: [PATCH] Cleanup Jamfile [SVN r23341] --- minmax/test/Jamfile | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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 + ] ; }