Jamfile.v2 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. # Boost regression-testing Jamfile
  2. # (C) Copyright David Abrahams 2002. Permission to copy, use, modify, sell and
  3. # distribute this software is granted provided this copyright notice appears in
  4. # all copies. This software is provided "as is" without express or implied
  5. # warranty, and with no claim as to its suitability for any purpose.
  6. # Status:
  7. # - std::locale-support usage is commented out.
  8. # Two test suite have different names.
  9. # <no-warn> in config test is commented out.
  10. # One of the smart_ptr test is run only from invocation dir in V1, and not
  11. # run in V2 at all.
  12. project status
  13. : source-location $(BOOST_ROOT)
  14. : requirements <hardcode-dll-paths>true
  15. ;
  16. import testing ;
  17. import modules ;
  18. local rule run-tests ( root : tests * )
  19. {
  20. local limit-tests = [ MATCH "^--limit-tests=(.*)" : [ modules.peek : ARGV ] ] ;
  21. for local test in $(tests)
  22. {
  23. if $(limit-tests)
  24. {
  25. if [ MATCH "^($(limit-tests))" : $(test) ]
  26. {
  27. build-project ../$(root)/$(test) ;
  28. }
  29. else
  30. {
  31. use-project /boost/$(test) : ../$(root)/$(test) ;
  32. }
  33. }
  34. else
  35. {
  36. build-project ../$(root)/$(test) ;
  37. }
  38. }
  39. }
  40. # Tests from Jamfiles in individual library test subdirectories
  41. # Please keep these in alphabetic order by test-suite name
  42. run-tests libs :
  43. accumulators/test # test-suite accumulators
  44. algorithm/test # test-suite algorithm
  45. algorithm/minmax/test # test-suite algorith/minmax
  46. algorithm/string/test # test-suite algorithm/string
  47. array/test # test-suite array
  48. asio/test # test-suite asio
  49. assert/test # test-suite assert
  50. assign/test # test-suite assign
  51. atomic/test # test-suite atomic
  52. any/test # test-suite any
  53. bimap/test # test-suite bimap
  54. bind/test # test-suite bind
  55. chrono/test # test-suite chrono
  56. container/example # test-suite container_example
  57. container/test # test-suite container_test
  58. circular_buffer/test # test-suite circular_buffer
  59. concept_check # test-suite concept_check
  60. config/test # test-suite config
  61. context/test # test-suite context
  62. conversion/test # test-suite conversion
  63. coroutine/test # test-suite coroutine
  64. crc/test # test-suite crc
  65. date_time/test # test-suite date_time
  66. detail/test # test-suite detail
  67. disjoint_sets # test-suite disjoint_sets
  68. dynamic_bitset # test-suite dynamic_bitset
  69. exception/test
  70. filesystem/test # test-suite filesystem
  71. flyweight/test # test-suite flyweight
  72. foreach/test # test-suite foreach
  73. format/test # test-suite format
  74. function/test # test-suite function
  75. functional/test # test-suite functional
  76. functional/factory/test # test-suite functional/factory
  77. functional/forward/test # test-suite functional/forward
  78. functional/hash/test/extra # test-suite functional/hash
  79. functional/overloaded_function/test # test-suite func./overloaded_function
  80. function_types/test # test-suite function_types
  81. fusion/test # test-suite fusion
  82. geometry/test # test-suite geometry
  83. gil/test # test-suite gil
  84. graph/test # test-suite graph
  85. graph_parallel/test # test-suite graph/parallel
  86. heap/test # test-suite heap
  87. icl/test # test-suite icl
  88. io/test # test-suite io
  89. integer/test # test-suite integer
  90. interprocess/example # test-suite interprocess_example
  91. interprocess/test # test-suite interprocess_test
  92. intrusive/example # test-suite intrusive_example
  93. intrusive/test # test-suite intrusive_test
  94. iostreams/test # test-suite iostreams
  95. iterator/test # test-suite iterator
  96. lambda/test # test-suite lambda
  97. local_function/test # test-suite local_function
  98. locale/test # test-suite locale
  99. log/test # test-suite log
  100. logic/test # test-suite logic
  101. lockfree/test # test-suite lockfree
  102. math/test # test-suite math
  103. multiprecision/test # test-suite multiprecision
  104. move/example # test-suite move_example
  105. move/test # test-suite move_test
  106. mpi/test # test-suite mpi
  107. mpl/test # test-suite mpl
  108. msm/test # msm-unit-tests
  109. numeric/conversion/test # test-suite numeric/conversion
  110. numeric/interval/test # test-suite numeric/interval
  111. numeric/odeint/test # test-suite numeric/odeint
  112. numeric/ublas/test # test-suite numeirc/uBLAS
  113. multi_array/test # test-suite multi_array
  114. multi_index/test # test-suite multi_index
  115. optional/test # test-suite optional
  116. parameter/test # test-suite parameter
  117. phoenix/test # test-suite phoenix
  118. polygon/test # test-suite polygon
  119. pool/test # test-suite pool
  120. predef/test # test-suite predef
  121. preprocessor/test # test-suite preprocessor
  122. program_options/test # test-suite program_options
  123. property_map/test # test-suite property_map
  124. property_tree/test # test-suite property_test
  125. proto/test # test-suite proto
  126. ptr_container/test # test-suite ptr_container
  127. python/test # test-suite python
  128. random/test # test-suite random
  129. range/test # test-suite range
  130. ratio/test # test-suite ratio
  131. rational/test # test-suite rational
  132. regex/test # test-suite regex
  133. regex/example # test-suite regex-examples
  134. scope_exit/test # test-suite scope_exit
  135. serialization/test # test-suite serialization
  136. signals/test # test-suite signals
  137. signals2/test # test-suite signals2
  138. smart_ptr/test # test-suite smart_ptr
  139. spirit/classic/test # test-suite classic spirit
  140. spirit/test # test-suite spirit_v2
  141. spirit/repository/test # test-suite spirit_v2 repository
  142. statechart/test # test-suite statechart
  143. static_assert # test-suite static_assert
  144. system/test # test-suite system
  145. test/test # test-suite test
  146. thread/test # test-suite thread
  147. timer/test # test-suite timer
  148. tokenizer/test # test-suite tokenizer
  149. tr1/test # test-suite tr1
  150. tti/test # test-suite tti
  151. tuple/test # test-suite tuple
  152. type_erasure/test # test-suite type_erasure
  153. type_traits/test # test-suite type_traits
  154. typeof/test # test-suite typeof
  155. units/test # test-suite units
  156. unordered/test/unordered # test-suite unordered
  157. unordered/test/exception # test-suite unordered-exception
  158. utility/enable_if/test # test-suite utility/enable_if
  159. utility/identity_type/test # test-suite utility/identity_type
  160. utility/swap/test # test-suite utility/swap
  161. utility/test # test-suite utility
  162. uuid/test # test-suite uuid
  163. variant/test # test-suite variant
  164. wave/test/build # test-suite wave
  165. xpressive/test # test-suite xpressive
  166. ;
  167. run-tests tools :
  168. bcp/test
  169. ;
粤ICP备19079148号