1# Boost string_algo library test suite Jamfile ---------------------------- 2# 3# Copyright Pavol Droba 2002-2003. Use, modification and 4# distribution is subject to the Boost Software License, Version 5# 1.0. (See accompanying file LICENSE_1_0.txt or copy at 6# http://www.boost.org/LICENSE_1_0.txt) 7# 8# See http://www.boost.org for updates, documentation, and revision history. 9 10import testing ; 11 12alias unit_test_framework 13 : # sources 14 /boost//unit_test_framework 15 ; 16 17test-suite algorithm/string 18 : [ run 19 trim_test.cpp unit_test_framework 20 : : 21 : 22 : trim 23 ] 24 [ run 25 conv_test.cpp unit_test_framework 26 : : 27 : 28 : conv 29 ] 30 [ run 31 predicate_test.cpp unit_test_framework 32 : : 33 : 34 : predicate 35 ] 36 [ run 37 find_test.cpp unit_test_framework 38 : : 39 : 40 : find 41 ] 42 [ run 43 split_test.cpp unit_test_framework 44 : : 45 : 46 : split 47 ] 48 [ run 49 join_test.cpp unit_test_framework 50 : : 51 : 52 : join 53 ] 54 [ run 55 replace_test.cpp unit_test_framework 56 : : 57 : 58 : replace 59 ] 60 [ run 61 regex_test.cpp unit_test_framework 62 ../../../regex/build//boost_regex 63 : : 64 : 65 : regex 66 ] 67 [ run 68 find_format_test.cpp unit_test_framework 69 : : 70 : 71 : find_format 72 ] 73 ; 74 75