Files
algorithm/string/test/Jamfile.v2

77 lines
1.7 KiB
Plaintext
Raw Normal View History

2004-06-10 10:02:02 +00:00
# Boost string_algo library test suite Jamfile ----------------------------
#
# Copyright Pavol Droba 2002-2003. 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)
#
# See http://www.boost.org for updates, documentation, and revision history.
import testing ;
project : requirements <library>/boost/algorithm//boost_algorithm ;
alias unit_test_framework
: # sources
2024-03-11 08:27:02 -05:00
/boost/test//unit_test_framework
;
test-suite algorithm/string
: [ run
trim_test.cpp unit_test_framework
2004-06-10 10:02:02 +00:00
: :
:
: trim
]
[ run
conv_test.cpp unit_test_framework
2004-06-10 10:02:02 +00:00
: :
:
: conv
]
[ run
predicate_test.cpp unit_test_framework
2004-06-10 10:02:02 +00:00
: :
:
: predicate
]
[ run
find_test.cpp unit_test_framework
2004-06-10 10:02:02 +00:00
: :
:
: find
]
[ run
split_test.cpp unit_test_framework
2004-06-10 10:02:02 +00:00
: :
:
: split
]
[ run
join_test.cpp unit_test_framework
: :
:
: join
]
[ run
replace_test.cpp unit_test_framework
2004-06-10 10:02:02 +00:00
: :
:
: replace
]
[ run
regex_test.cpp unit_test_framework
2004-06-10 10:02:02 +00:00
../../../regex/build//boost_regex
: :
:
2004-06-10 10:02:02 +00:00
: regex
]
[ run
find_format_test.cpp unit_test_framework
: :
:
: find_format
]
2004-06-10 10:02:02 +00:00
;