mirror of
https://github.com/boostorg/range.git
synced 2025-07-23 01:17:18 +02:00
104 lines
1.9 KiB
Plaintext
Executable File
104 lines
1.9 KiB
Plaintext
Executable File
# 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/
|
|
#
|
|
|
|
subproject libs/range/test ;
|
|
|
|
SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
|
|
include testing.jam ;
|
|
DEPENDS all : test ;
|
|
|
|
{
|
|
test-suite range
|
|
: [ run
|
|
array.cpp
|
|
: :
|
|
:
|
|
: array_test
|
|
]
|
|
[ run
|
|
iterator_pair.cpp
|
|
: :
|
|
:
|
|
: iterator_pair_test
|
|
]
|
|
[ run
|
|
std_container.cpp
|
|
: :
|
|
:
|
|
: std_container_test
|
|
]
|
|
[ run
|
|
string.cpp
|
|
: :
|
|
:
|
|
: string_test
|
|
]
|
|
[ run
|
|
iterator_range.cpp
|
|
: :
|
|
:
|
|
: iterator_range
|
|
]
|
|
[ run
|
|
sub_range.cpp
|
|
: :
|
|
:
|
|
: sub_range
|
|
]
|
|
|
|
[ run
|
|
partial_workaround.cpp
|
|
: :
|
|
:
|
|
: workaround_test
|
|
]
|
|
[ run
|
|
algorithm_example.cpp
|
|
: :
|
|
:
|
|
: example_test
|
|
]
|
|
|
|
[ run
|
|
reversible_range.cpp
|
|
: :
|
|
:
|
|
: reversible_range_test
|
|
]
|
|
[ run
|
|
const_ranges.cpp
|
|
: :
|
|
:
|
|
: const_ranges
|
|
]
|
|
# [ run
|
|
# compat3.cpp
|
|
# : :
|
|
# :
|
|
# : compat3_test
|
|
# ]
|
|
#
|
|
# [ run
|
|
# adl_conformance.cpp
|
|
# : :
|
|
# :
|
|
# : adl_conformance
|
|
# ]
|
|
# [ run
|
|
# adl_conformance_no_using.cpp
|
|
# : :
|
|
# :
|
|
# : adl_conformance_no_using_declaration
|
|
# ]
|
|
|
|
;
|
|
|
|
}
|