Jamfile.v2 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. import testing ;
  10. alias unit_test_framework
  11. : # sources
  12. /boost//unit_test_framework
  13. ;
  14. test-suite algorithm/string
  15. : [ run
  16. trim_test.cpp unit_test_framework
  17. : :
  18. :
  19. : trim
  20. ]
  21. [ run
  22. conv_test.cpp unit_test_framework
  23. : :
  24. :
  25. : conv
  26. ]
  27. [ run
  28. predicate_test.cpp unit_test_framework
  29. : :
  30. :
  31. : predicate
  32. ]
  33. [ run
  34. find_test.cpp unit_test_framework
  35. : :
  36. :
  37. : find
  38. ]
  39. [ run
  40. split_test.cpp unit_test_framework
  41. : :
  42. :
  43. : split
  44. ]
  45. [ run
  46. join_test.cpp unit_test_framework
  47. : :
  48. :
  49. : join
  50. ]
  51. [ run
  52. replace_test.cpp unit_test_framework
  53. : :
  54. :
  55. : replace
  56. ]
  57. [ run
  58. regex_test.cpp unit_test_framework
  59. ../../../regex/build//boost_regex
  60. : :
  61. :
  62. : regex
  63. ]
  64. [ run
  65. find_format_test.cpp unit_test_framework
  66. : :
  67. :
  68. : find_format
  69. ]
  70. ;