2004-08-26 23:49:24 +00:00
|
|
|
# Boost.Range library
|
|
|
|
#
|
|
|
|
# Copyright Thorsten Ottosen 2003-2004. Use, modification and
|
|
|
|
# distribution is subject to the Boost Software License, Version
|
|
|
|
# 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
|
|
|
# http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
#
|
|
|
|
# For more information, see http://www.boost.org/libs/range/
|
|
|
|
#
|
|
|
|
|
2004-06-29 02:58:13 +00:00
|
|
|
subproject libs/range/test ;
|
|
|
|
|
|
|
|
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
|
|
|
|
include testing.jam ;
|
|
|
|
DEPENDS all : test ;
|
|
|
|
|
|
|
|
{
|
|
|
|
test-suite range
|
|
|
|
: [ run
|
|
|
|
array.cpp
|
2004-07-25 17:12:17 +00:00
|
|
|
: :
|
|
|
|
:
|
|
|
|
: array_test
|
2004-06-29 02:58:13 +00:00
|
|
|
]
|
|
|
|
[ run
|
|
|
|
iterator_pair.cpp
|
2004-07-25 17:12:17 +00:00
|
|
|
: :
|
|
|
|
:
|
|
|
|
: iterator_pair_test
|
2004-06-29 02:58:13 +00:00
|
|
|
]
|
|
|
|
[ run
|
|
|
|
std_container.cpp
|
2004-07-25 17:12:17 +00:00
|
|
|
: :
|
|
|
|
:
|
|
|
|
: std_container_test
|
2004-06-29 02:58:13 +00:00
|
|
|
]
|
|
|
|
[ run
|
2004-07-25 17:12:17 +00:00
|
|
|
string.cpp
|
|
|
|
: :
|
|
|
|
:
|
|
|
|
: string_test
|
2004-06-29 02:58:13 +00:00
|
|
|
]
|
|
|
|
[ run
|
2004-07-25 17:12:17 +00:00
|
|
|
iterator_range.cpp
|
|
|
|
: :
|
|
|
|
:
|
|
|
|
: iterator_range
|
2004-06-29 02:58:13 +00:00
|
|
|
]
|
2004-07-27 17:53:15 +00:00
|
|
|
[ run
|
|
|
|
sub_range.cpp
|
|
|
|
: :
|
|
|
|
:
|
|
|
|
: sub_range
|
|
|
|
]
|
2004-06-29 02:58:13 +00:00
|
|
|
|
|
|
|
[ run
|
2004-07-25 17:12:17 +00:00
|
|
|
partial_workaround.cpp
|
|
|
|
: :
|
|
|
|
:
|
|
|
|
: workaround_test
|
2004-06-29 02:58:13 +00:00
|
|
|
]
|
|
|
|
[ run
|
2004-07-25 17:12:17 +00:00
|
|
|
algorithm_example.cpp
|
|
|
|
: :
|
|
|
|
:
|
|
|
|
: example_test
|
2004-06-29 02:58:13 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
[ run
|
2004-07-25 17:12:17 +00:00
|
|
|
reversible_range.cpp
|
|
|
|
: :
|
|
|
|
:
|
|
|
|
: reversible_range_test
|
2004-07-23 12:38:56 +00:00
|
|
|
]
|
2004-09-16 18:21:42 +00:00
|
|
|
[ run
|
|
|
|
const_ranges.cpp
|
|
|
|
: :
|
|
|
|
:
|
|
|
|
: const_ranges
|
|
|
|
]
|
2004-08-26 23:49:24 +00:00
|
|
|
# [ run
|
|
|
|
# compat3.cpp
|
|
|
|
# : :
|
|
|
|
# :
|
|
|
|
# : compat3_test
|
|
|
|
# ]
|
|
|
|
#
|
2004-08-19 09:31:03 +00:00
|
|
|
# [ run
|
|
|
|
# adl_conformance.cpp
|
|
|
|
# : :
|
|
|
|
# :
|
|
|
|
# : adl_conformance
|
|
|
|
# ]
|
2004-08-26 23:49:24 +00:00
|
|
|
# [ run
|
|
|
|
# adl_conformance_no_using.cpp
|
|
|
|
# : :
|
|
|
|
# :
|
|
|
|
# : adl_conformance_no_using_declaration
|
|
|
|
# ]
|
2004-08-20 18:59:28 +00:00
|
|
|
|
|
|
|
;
|
2004-08-12 17:20:51 +00:00
|
|
|
|
2004-06-29 02:58:13 +00:00
|
|
|
}
|