Files
range/test/Jamfile

92 lines
1.5 KiB
Plaintext
Raw Normal View History

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
]
[ run
2004-07-25 17:12:17 +00:00
compat1.cpp
: :
:
: compat1_test
2004-07-23 12:38:56 +00:00
]
2004-08-05 17:54:05 +00:00
# [ run
# compat2.cpp
# : :
# :
# : compat2_test
# ]
2004-07-23 12:38:56 +00:00
[ run
2004-07-25 17:12:17 +00:00
compat3.cpp
: :
:
: compat3_test
2004-07-23 12:38:56 +00:00
]
2004-07-30 15:10:17 +00:00
[ run
adl_conformance.cpp
: :
:
: adl_conformance
]
2004-07-25 17:12:17 +00:00
;
2004-06-29 02:58:13 +00:00
}