mirror of
https://github.com/boostorg/iterator.git
synced 2025-07-22 00:52:08 +02:00
* Use boost::referent<> metafunction for detecting the value type of
indirect_iterator. * Change the order of tests in the Jamfile so expected failures come last, accounting for some recent Boost.Build change I suppose. [SVN r19158]
This commit is contained in:
15
test/Jamfile
15
test/Jamfile
@ -10,7 +10,17 @@ SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
|
||||
include testing.jam ;
|
||||
|
||||
test-suite iterator
|
||||
: [ run unit_tests.cpp ]
|
||||
:
|
||||
# These first two tests will run last, and are expected to fail
|
||||
# for many less-capable compilers.
|
||||
|
||||
[ compile-fail interoperable_fail.cpp ]
|
||||
# test uses expected success, so that we catch unrelated
|
||||
# compilation problems.
|
||||
[ run is_convertible_fail.cpp ]
|
||||
|
||||
# These tests should work for just about everything.
|
||||
[ run unit_tests.cpp ]
|
||||
[ run concept_tests.cpp ]
|
||||
[ run iterator_adaptor_cc.cpp ]
|
||||
[ run iterator_adaptor_test.cpp ]
|
||||
@ -30,7 +40,4 @@ test-suite iterator
|
||||
[ run ../../utility/reverse_iterator_example.cpp ]
|
||||
[ run ../../utility/transform_iterator_example.cpp ]
|
||||
|
||||
[ run is_convertible_fail.cpp ] # test changed to expected success, so that we catch compilation failures.
|
||||
|
||||
[ compile-fail interoperable_fail.cpp ]
|
||||
;
|
||||
|
Reference in New Issue
Block a user