2003-08-22 15:21:17 +00:00
|
|
|
# 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 ]
|
2003-09-02 20:13:58 +00:00
|
|
|
[ run libs/utility/test/lex_performance_test.cpp ]
|
2003-08-22 15:21:17 +00:00
|
|
|
;
|
|
|
|
}
|