Factored out separate utility/test Jamfile

[SVN r19068]
This commit is contained in:
Dave Abrahams 2003-07-11 17:24:18 +00:00
parent c1c8329403
commit 22b8494e9a

34
test/Jamfile Executable file
View File

@ -0,0 +1,34 @@
# Copyright David Abrahams 2003. Permission to copy, use,
# modify, sell and distribute this software is granted provided this
# copyright notice appears in all copies. This software is provided
# "as is" without express or implied warranty, and with no claim as
# to its suitability for any purpose.
# For more information, see http://www.boost.org/
# Testing Jamfile autogenerated from XML source
subproject libs/conversion/test ;
# bring in rules for testing
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
include testing.jam ;
# Make tests run by default.
DEPENDS all : test ;
test-suite utility
:
[ run ../iterator_traits_test.cpp ]
[ run ../iterators_test.cpp <lib>../../test/build/boost_test_exec_monitor ]
[ compile-fail ../noncopyable_test.cpp ]
[ run ../numeric_traits_test.cpp ]
[ run ../operators_test.cpp <lib>../../test/build/boost_test_exec_monitor ]
[ run ../tie_example.cpp ]
[ run ../binary_search_test.cpp <lib>../../test/build/boost_test_exec_monitor ]
[ run ../call_traits_test.cpp : -u ]
[ compile-fail ../checked_delete_test.cpp ]
[ run ../compressed_pair_test.cpp <lib>../../test/build/boost_test_exec_monitor : -u ]
[ run ../addressof_test.cpp <lib>../../test/build/boost_test_exec_monitor ]
[ run ../ref_test.cpp <lib>../../test/build/boost_test_exec_monitor ]
;