From ad67e4eb390a70a902b9214b26cb887e5a70c067 Mon Sep 17 00:00:00 2001 From: Jan Langer Date: Fri, 22 Aug 2003 15:21:17 +0000 Subject: [PATCH] jamfile for tests in utility [SVN r1457] --- test/Jamfile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 test/Jamfile diff --git a/test/Jamfile b/test/Jamfile new file mode 100644 index 0000000..c6ad9b8 --- /dev/null +++ b/test/Jamfile @@ -0,0 +1,16 @@ +# Boost Utility Library test Jamfile + +subproject libs/utility/test ; + +# bring in rules for testing +SEARCH on testing.jam = $(BOOST_BUILD_PATH) ; +include testing.jam ; + +{ + # look in BOOST_ROOT for sources first, just in this Jamfile + local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ; + + test-suite "utility" + : [ run libs/utility/test/lexicographic_test.cpp ] + ; +}