Jamfile 45 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352
  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. subproject status ;
  7. # bring in the rules for testing
  8. SEARCH on testing.jam = $(BOOST_BUILD_PATH) ;
  9. include testing.jam ;
  10. # Note that the Compiler Status Report HTML generator scans
  11. # these rule invocations to find test type (compile, run, etc.)
  12. # That program is quite stupid and needs help, including test names
  13. # (if supplied) which are unambiguous, not the same as a .cpp file
  14. # name, and preceded and followed by a space. The .cpp file name must
  15. # be given on the same line as the test type.
  16. #
  17. # If the line with the test type includes the comment
  18. # "# compiler_status<always_show_run_output>" then
  19. # run output will be displayed even if the test passes.
  20. {
  21. # look in BOOST_ROOT for sources first, just in this Jamfile
  22. local SEARCH_SOURCE = $(BOOST_ROOT) $(SEARCH_SOURCE) ;
  23. test-suite "bind"
  24. : [ run libs/bind/bind_test.cpp ]
  25. [ run libs/bind/mem_fn_test.cpp ]
  26. [ run libs/bind/mem_fn_void_test.cpp ]
  27. [ run libs/bind/mem_fn_derived_test.cpp ]
  28. ;
  29. test-suite config
  30. : [ run libs/config/test/config_test.cpp <lib>../libs/test/build/test_exec_monitor
  31. : #args
  32. : #input-files
  33. : #requirements
  34. <threading>multi
  35. ]
  36. [ run libs/config/test/config_info.cpp ] # compiler_status<always_show_run_output>
  37. [ run libs/config/test/limits_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  38. ;
  39. run libs/any/any_test.cpp ;
  40. test-suite array
  41. : [ run libs/array/array1.cpp ]
  42. [ run libs/array/array2.cpp ]
  43. [ run libs/array/array3.cpp ]
  44. [ run libs/array/array4.cpp ]
  45. [ run libs/array/array5.cpp ]
  46. ;
  47. test-suite concept_check
  48. : [ compile libs/concept_check/concept_check_test.cpp ]
  49. [ compile libs/concept_check/class_concept_check_test.cpp ]
  50. [ link-fail libs/concept_check/concept_check_fail_expected.cpp ]
  51. [ link-fail libs/concept_check/class_concept_fail_expected.cpp ]
  52. ;
  53. test-suite conversion
  54. : [ run libs/conversion/cast_test.cpp ]
  55. [ run libs/conversion/lexical_cast_test.cpp ]
  56. ;
  57. run libs/crc/crc_test.cpp <lib>../libs/test/build/test_exec_monitor ;
  58. test-suite date_time
  59. : [ run libs/date_time/test/testgregorian_calendar.cpp
  60. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  61. [ run libs/date_time/test/gregorian/testdate.cpp
  62. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  63. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  64. [ run libs/date_time/test/gregorian/testdate_duration.cpp
  65. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  66. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  67. [ run libs/date_time/test/gregorian/testdate_iterator.cpp
  68. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  69. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  70. [ run libs/date_time/test/gregorian/testfacet.cpp
  71. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  72. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  73. [ run libs/date_time/test/gregorian/testformatters.cpp
  74. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  75. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  76. [ run libs/date_time/test/gregorian/testgenerators.cpp
  77. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  78. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  79. [ run libs/date_time/test/gregorian/testgreg_cal.cpp
  80. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  81. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  82. [ run libs/date_time/test/gregorian/testgreg_day.cpp
  83. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  84. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  85. [ run libs/date_time/test/gregorian/testgreg_month.cpp
  86. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  87. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  88. [ run libs/date_time/test/gregorian/testparse_date.cpp
  89. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  90. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  91. [ run libs/date_time/test/posix_time/testc_local_adjustor.cpp
  92. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  93. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  94. [ run libs/date_time/test/posix_time/testclock.cpp
  95. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  96. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  97. [ run libs/date_time/test/posix_time/testdst_rules.cpp
  98. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  99. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  100. [ run libs/date_time/test/posix_time/testduration.cpp
  101. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  102. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  103. [ run libs/date_time/test/posix_time/testiterator.cpp
  104. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  105. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  106. [ run libs/date_time/test/posix_time/testparse_time.cpp
  107. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  108. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  109. [ run libs/date_time/test/posix_time/testperiod.cpp
  110. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  111. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  112. [ run libs/date_time/test/posix_time/testtime.cpp
  113. <lib>../libs/date_time/build/boost_date_time$(SUFLIB)
  114. : : : <define>DATE_TIME_INLINE <define>BOOST_DATE_TIME_POSIX_TIME_STD_CONFIG ]
  115. [ run libs/date_time/test/testint_adapter.cpp ]
  116. [ run libs/date_time/test/testtime_resolution_traits.cpp ]
  117. [ run libs/date_time/test/testwrapping_int.cpp ]
  118. [ run libs/date_time/test/testconstrained_value.cpp ]
  119. ;
  120. test-suite disjoint_sets
  121. : [ run libs/disjoint_sets/disjoint_set_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  122. ;
  123. test-suite dynamic_bitset
  124. : [ run libs/dynamic_bitset/dyn_bitset_unit_tests1.cpp <lib>../libs/test/build/test_exec_monitor ]
  125. [ run libs/dynamic_bitset/dyn_bitset_unit_tests2.cpp <lib>../libs/test/build/test_exec_monitor ]
  126. [ run libs/dynamic_bitset/dyn_bitset_unit_tests3.cpp <lib>../libs/test/build/test_exec_monitor ]
  127. ;
  128. test-suite format
  129. : [ run libs/format/test/format_test1.cpp <lib>../libs/test/build/test_exec_monitor ]
  130. [ run libs/format/test/format_test2.cpp <lib>../libs/test/build/test_exec_monitor ]
  131. ;
  132. test-suite function
  133. : [ run libs/function/test/function_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  134. [ run libs/function/test/function_n_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  135. [ run libs/function/test/allocator_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  136. [ run libs/function/test/stateless_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  137. [ compile-fail libs/function/test/function_test_fail1.cpp <lib>../libs/test/build/test_exec_monitor ]
  138. [ compile-fail libs/function/test/function_test_fail2.cpp <lib>../libs/test/build/test_exec_monitor ]
  139. ;
  140. run libs/functional/function_test.cpp ;
  141. run libs/graph/test/graph.cpp ;
  142. test-suite integer
  143. : [ run libs/integer/cstdint_test.cpp ]
  144. [ run libs/integer/integer_test.cpp ]
  145. [ run libs/integer/integer_traits_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  146. ;
  147. run
  148. libs/io/test/ios_state_test.cpp <lib>../libs/test/build/test_exec_monitor # sources
  149. : # args
  150. : # input-files
  151. : <runtime-link>static # requirements (static runtime required by Metrowerks)
  152. ;
  153. test-suite lambda
  154. : [ run libs/lambda/test/bind_tests_simple.cpp <lib>../libs/test/build/test_exec_monitor ]
  155. [ run libs/lambda/test/bind_tests_advanced.cpp <lib>../libs/test/build/test_exec_monitor ]
  156. [ run libs/lambda/test/bind_tests_simple_f_refs.cpp <lib>../libs/test/build/test_exec_monitor ]
  157. [ run libs/lambda/test/bll_and_function.cpp <lib>../libs/test/build/test_exec_monitor ]
  158. [ run libs/lambda/test/cast_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  159. [ run libs/lambda/test/constructor_tests.cpp <lib>../libs/test/build/test_exec_monitor ]
  160. [ run libs/lambda/test/control_structures.cpp <lib>../libs/test/build/test_exec_monitor ]
  161. [ run libs/lambda/test/exception_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  162. [ run libs/lambda/test/extending_rt_traits.cpp <lib>../libs/test/build/test_exec_monitor ]
  163. [ run libs/lambda/test/is_instance_of_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  164. [ run libs/lambda/test/member_pointer_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  165. [ run libs/lambda/test/operator_tests_simple.cpp <lib>../libs/test/build/test_exec_monitor ]
  166. [ run libs/lambda/test/phoenix_control_structures.cpp <lib>../libs/test/build/test_exec_monitor ]
  167. [ run libs/lambda/test/switch_construct.cpp <lib>../libs/test/build/test_exec_monitor ]
  168. ;
  169. test-suite math
  170. : [ run libs/math/test/common_factor_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  171. [ run libs/math/octonion/octonion_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  172. [ run libs/math/quaternion/quaternion_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  173. [ run libs/math/special_functions/special_functions_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  174. ;
  175. run libs/pool/test/test_pool_alloc.cpp <lib>../libs/test/build/test_exec_monitor ;
  176. test-suite preprocessor
  177. : [ compile libs/preprocessor/test/arithmetic.cpp ]
  178. [ compile libs/preprocessor/test/array.cpp ]
  179. [ compile libs/preprocessor/test/comparison.cpp ]
  180. [ compile libs/preprocessor/test/control.cpp ]
  181. [ compile libs/preprocessor/test/debug.cpp ]
  182. [ compile libs/preprocessor/test/facilities.cpp ]
  183. [ compile libs/preprocessor/test/iteration.cpp ]
  184. [ compile libs/preprocessor/test/list.cpp ]
  185. [ compile libs/preprocessor/test/logical.cpp ]
  186. [ compile libs/preprocessor/test/repetition.cpp ]
  187. [ compile libs/preprocessor/test/selection.cpp ]
  188. [ compile libs/preprocessor/test/slot.cpp ]
  189. [ compile libs/preprocessor/test/tuple.cpp ]
  190. ;
  191. test-suite property_map
  192. : [ compile libs/property_map/property_map_cc.cpp ]
  193. ;
  194. test-suite rational
  195. : [ run libs/rational/rational_example.cpp ]
  196. [ run libs/rational/rational_test.cpp ]
  197. ;
  198. test-suite random
  199. : [ run libs/random/random_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  200. [ run libs/random/random_demo.cpp ]
  201. ;
  202. {
  203. local test-dir = $(BOOST_ROOT)$(SLASH)libs$(SLASH)regex$(SLASH)test$(SLASH)regress$(SLASH) ;
  204. local test-files = $(test-dir)tests.txt
  205. # dwa -- not sure if this is generally applicable
  206. # $(test-dir)test1252.txt
  207. ;
  208. test-suite regex
  209. : [ run libs/regex/test/regress/parse.cpp libs/regex/test/regress/regress.cpp libs/regex/test/regress/tests.cpp
  210. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  211. <lib>../libs/test/build/prg_exec_monitor
  212. :
  213. $(test-files)
  214. :
  215. :
  216. <define>BOOST_REGEX_NO_LIB=1
  217. <define>BOOST_REGEX_STATIC_LINK=1
  218. :
  219. regress ]
  220. [ run libs/regex/test/regress/parse.cpp libs/regex/test/regress/regress.cpp libs/regex/test/regress/tests.cpp
  221. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  222. <lib>../libs/test/build/prg_exec_monitor
  223. :
  224. $(test-files)
  225. :
  226. :
  227. <define>BOOST_REGEX_NO_LIB=1
  228. <define>TEST_UNICODE=1
  229. <define>BOOST_REGEX_STATIC_LINK=1
  230. :
  231. wregress ]
  232. [ run libs/regex/test/c_compiler_checks/posix_api_check.c
  233. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  234. <lib>../libs/test/build/prg_exec_monitor
  235. :
  236. :
  237. :
  238. <define>BOOST_REGEX_NO_LIB=1
  239. <define>BOOST_REGEX_STATIC_LINK=1
  240. :
  241. posix_api_check_c ]
  242. [ run libs/regex/test/c_compiler_checks/wide_posix_api_check.c
  243. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  244. :
  245. :
  246. :
  247. <define>BOOST_REGEX_NO_LIB=1
  248. <define>BOOST_REGEX_STATIC_LINK=1
  249. :
  250. wide_posix_api_check_c ]
  251. [ run libs/regex/test/c_compiler_checks/posix_api_check.cpp
  252. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  253. :
  254. :
  255. :
  256. <define>BOOST_REGEX_NO_LIB=1
  257. <define>BOOST_REGEX_STATIC_LINK=1
  258. ]
  259. [ run libs/regex/test/c_compiler_checks/wide_posix_api_check.cpp
  260. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  261. :
  262. :
  263. :
  264. <define>BOOST_REGEX_NO_LIB=1
  265. <define>BOOST_REGEX_STATIC_LINK=1
  266. ]
  267. [ run libs/regex/example/timer/regex_timer.cpp
  268. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  269. :
  270. $(BOOST_ROOT)$(SLASH)libs$(SLASH)regex$(SLASH)example$(SLASH)timer$(SLASH)input_script.txt
  271. :
  272. :
  273. <define>BOOST_REGEX_NO_LIB=1
  274. <define>BOOST_REGEX_STATIC_LINK=1
  275. :
  276. regex_timer
  277. ]
  278. [ run libs/regex/example/jgrep/jgrep.cpp libs/regex/example/jgrep/main.cpp
  279. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  280. :
  281. -n boost/ $(BOOST_ROOT)$(SLASH)boost$(SLASH)regex.hpp
  282. :
  283. :
  284. <define>BOOST_REGEX_NO_LIB=1
  285. <define>BOOST_REGEX_STATIC_LINK=1
  286. :
  287. jgrep
  288. ]
  289. [ run libs/regex/example/snippets/credit_card_example.cpp
  290. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  291. :
  292. :
  293. :
  294. <define>BOOST_REGEX_NO_LIB=1
  295. <define>BOOST_REGEX_STATIC_LINK=1
  296. :
  297. credit_card_example
  298. ]
  299. [ run libs/regex/example/snippets/partial_regex_grep.cpp
  300. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  301. :
  302. $(BOOST_ROOT)$(SLASH)libs$(SLASH)regex$(SLASH)index.htm
  303. :
  304. :
  305. <define>BOOST_REGEX_NO_LIB=1
  306. <define>BOOST_REGEX_STATIC_LINK=1
  307. :
  308. partial_regex_grep
  309. ]
  310. [ run libs/regex/example/snippets/partial_regex_match.cpp
  311. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  312. :
  313. 1234-5678-8765-4
  314. :
  315. :
  316. <define>BOOST_REGEX_NO_LIB=1
  317. <define>BOOST_REGEX_STATIC_LINK=1
  318. :
  319. partial_regex_match
  320. ]
  321. [ run libs/regex/example/snippets/regex_grep_example_1.cpp
  322. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  323. :
  324. $(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
  325. :
  326. :
  327. <define>BOOST_REGEX_NO_LIB=1
  328. <define>BOOST_REGEX_STATIC_LINK=1
  329. :
  330. regex_grep_example_1
  331. ]
  332. [ run libs/regex/example/snippets/regex_grep_example_2.cpp
  333. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  334. :
  335. $(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
  336. :
  337. :
  338. <define>BOOST_REGEX_NO_LIB=1
  339. <define>BOOST_REGEX_STATIC_LINK=1
  340. :
  341. regex_grep_example_2
  342. ]
  343. [ run libs/regex/example/snippets/regex_grep_example_3.cpp
  344. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  345. :
  346. $(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
  347. :
  348. :
  349. <define>BOOST_REGEX_NO_LIB=1
  350. <define>BOOST_REGEX_STATIC_LINK=1
  351. :
  352. regex_grep_example_3
  353. ]
  354. [ run libs/regex/example/snippets/regex_grep_example_4.cpp
  355. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  356. :
  357. $(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
  358. :
  359. :
  360. <define>BOOST_REGEX_NO_LIB=1
  361. <define>BOOST_REGEX_STATIC_LINK=1
  362. :
  363. regex_grep_example_4
  364. ]
  365. [ run libs/regex/example/snippets/regex_match_example.cpp
  366. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  367. :
  368. -auto
  369. :
  370. :
  371. <define>BOOST_REGEX_NO_LIB=1
  372. <define>BOOST_REGEX_STATIC_LINK=1
  373. :
  374. regex_match_example
  375. ]
  376. [ run libs/regex/example/snippets/regex_merge_example.cpp
  377. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  378. :
  379. $(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
  380. :
  381. :
  382. <define>BOOST_REGEX_NO_LIB=1
  383. <define>BOOST_REGEX_STATIC_LINK=1
  384. :
  385. regex_merge_example
  386. ]
  387. [ run libs/regex/example/snippets/regex_search_example.cpp
  388. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  389. :
  390. $(BOOST_ROOT)$(SLASH)boost$(SLASH)rational.hpp
  391. :
  392. :
  393. <define>BOOST_REGEX_NO_LIB=1
  394. <define>BOOST_REGEX_STATIC_LINK=1
  395. :
  396. regex_search_example
  397. ]
  398. [ run libs/regex/example/snippets/regex_split_example_1.cpp
  399. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  400. :
  401. -auto
  402. :
  403. :
  404. <define>BOOST_REGEX_NO_LIB=1
  405. <define>BOOST_REGEX_STATIC_LINK=1
  406. :
  407. regex_split_example_1
  408. ]
  409. [ run libs/regex/example/snippets/regex_split_example_2.cpp
  410. <lib>../libs/regex/build/boost_regex$(SUFLIB)
  411. :
  412. $(BOOST_ROOT)$(SLASH)libs$(SLASH)regex$(SLASH)index.htm
  413. :
  414. :
  415. <define>BOOST_REGEX_NO_LIB=1
  416. <define>BOOST_REGEX_STATIC_LINK=1
  417. :
  418. regex_split_example_2
  419. ]
  420. ;
  421. }
  422. test-suite signals
  423. : [ run libs/signals/test/dead_slot_test.cpp
  424. <lib>../libs/test/build/test_exec_monitor
  425. <lib>../libs/signals/build/boost_signals$(SUFLIB) ]
  426. [ run libs/signals/test/deletion_test.cpp
  427. <lib>../libs/test/build/test_exec_monitor
  428. <lib>../libs/signals/build/boost_signals$(SUFLIB) ]
  429. [ run libs/signals/test/ordering_test.cpp
  430. <lib>../libs/test/build/test_exec_monitor
  431. <lib>../libs/signals/build/boost_signals$(SUFLIB) ]
  432. [ run libs/signals/test/signal_n_test.cpp
  433. <lib>../libs/test/build/test_exec_monitor
  434. <lib>../libs/signals/build/boost_signals$(SUFLIB) ]
  435. [ run libs/signals/test/signal_test.cpp
  436. <lib>../libs/test/build/test_exec_monitor
  437. <lib>../libs/signals/build/boost_signals$(SUFLIB) ]
  438. [ run libs/signals/test/trackable_test.cpp
  439. <lib>../libs/test/build/test_exec_monitor
  440. <lib>../libs/signals/build/boost_signals$(SUFLIB) ]
  441. ;
  442. test-suite smart_ptr
  443. : [ run libs/smart_ptr/smart_ptr_test.cpp ]
  444. [ run libs/smart_ptr/shared_ptr_test.cpp ]
  445. [ compile-fail libs/smart_ptr/shared_ptr_assign_fail.cpp ]
  446. ;
  447. test-suite static_assert
  448. : [ compile libs/static_assert/static_assert_test.cpp ]
  449. [ compile-fail libs/static_assert/static_assert_test_fail_1.cpp ]
  450. [ compile-fail libs/static_assert/static_assert_test_fail_2.cpp ]
  451. [ compile-fail libs/static_assert/static_assert_test_fail_3.cpp ]
  452. [ compile-fail libs/static_assert/static_assert_test_fail_4.cpp ]
  453. [ compile-fail libs/static_assert/static_assert_test_fail_5.cpp ]
  454. [ compile-fail libs/static_assert/static_assert_test_fail_6.cpp ]
  455. [ compile-fail libs/static_assert/static_assert_test_fail_7.cpp ]
  456. [ link-fail libs/static_assert/static_assert_test_fail_8.cpp ]
  457. ;
  458. subinclude libs/test/test ;
  459. {
  460. local threadmon ;
  461. local thread-sources ;
  462. local thread-requirements ;
  463. if $(NT)
  464. {
  465. threadmon = <dll>../libs/thread/build/boost_threadmon ;
  466. }
  467. thread-sources = <lib>../libs/thread/build/boost_thread
  468. <lib>../libs/test/build/unit_test_framework
  469. $(threadmon)
  470. ;
  471. thread-requirements = <threading>multi ;
  472. test-suite threads
  473. : [ run libs/thread/test/test_thread.cpp $(thread-sources)
  474. : #args
  475. : #input-files
  476. : $(thread-requirements)
  477. ]
  478. [ run libs/thread/test/test_mutex.cpp $(thread-sources)
  479. : #args
  480. : #input-files
  481. : $(thread-requirements)
  482. ]
  483. [ run libs/thread/test/test_condition.cpp $(thread-sources)
  484. : #args
  485. : #input-files
  486. : $(thread-requirements)
  487. ]
  488. [ run libs/thread/test/test_tss.cpp $(thread-sources)
  489. : #args
  490. : #input-files
  491. : $(thread-requirements)
  492. ]
  493. [ run libs/thread/test/test_once.cpp $(thread-sources)
  494. : #args
  495. : #input-files
  496. : $(thread-requirements)
  497. ]
  498. [ run libs/thread/test/test_xtime.cpp $(thread-sources)
  499. : #args
  500. : #input-files
  501. : $(thread-requirements)
  502. ]
  503. ;
  504. }
  505. compile libs/timer/timer_test.cpp ;
  506. test-suite tokenizer
  507. : [ run libs/tokenizer/examples.cpp <lib>../libs/test/build/test_exec_monitor ]
  508. [ run libs/tokenizer/simple_example_1.cpp ]
  509. [ run libs/tokenizer/simple_example_2.cpp ]
  510. [ run libs/tokenizer/simple_example_3.cpp ]
  511. [ run libs/tokenizer/simple_example_4.cpp ]
  512. [ run libs/tokenizer/simple_example_5.cpp ]
  513. ;
  514. test-suite tuple
  515. : [ run libs/tuple/test/tuple_test_bench.cpp <lib>../libs/test/build/test_exec_monitor ]
  516. [ run libs/tuple/test/io_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  517. ;
  518. test-suite iterator_adaptors
  519. : [ run libs/utility/counting_iterator_test.cpp : # args
  520. : # input files
  521. : # requirements
  522. # borland warns incorrectly in this case, so often that
  523. # successful compilation is prevented.
  524. <borland><*><cxxflags>"-w-8091 -w-8092"
  525. ]
  526. [ run libs/utility/iterator_adaptor_test.cpp ]
  527. [ compile-fail libs/utility/iter_adaptor_fail_expected1.cpp ]
  528. [ compile-fail libs/utility/iter_adaptor_fail_expected2.cpp ]
  529. [ run libs/utility/transform_iterator_test.cpp ]
  530. [ run libs/utility/indirect_iterator_test.cpp ]
  531. [ run libs/utility/iter_traits_gen_test.cpp ]
  532. [ run libs/utility/iterator_adaptor_examples.cpp ]
  533. [ run libs/utility/counting_iterator_example.cpp ]
  534. [ run libs/utility/filter_iterator_example.cpp ]
  535. [ run libs/utility/fun_out_iter_example.cpp ]
  536. [ run libs/utility/indirect_iterator_example.cpp ]
  537. [ run libs/utility/projection_iterator_example.cpp ]
  538. [ run libs/utility/reverse_iterator_example.cpp ]
  539. [ run libs/utility/transform_iterator_example.cpp ]
  540. ;
  541. test-suite ublas
  542. : [ run libs/numeric/ublas/test1/test1.cpp
  543. libs/numeric/ublas/test1/test11.cpp
  544. libs/numeric/ublas/test1/test12.cpp
  545. libs/numeric/ublas/test1/test13.cpp
  546. : # args
  547. : # input files
  548. : # requirements
  549. # borland warns so often that successful compilation is prevented.
  550. <borland><*><cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
  551. ]
  552. [ run libs/numeric/ublas/test2/test2.cpp
  553. libs/numeric/ublas/test2/test21.cpp
  554. libs/numeric/ublas/test2/test22.cpp
  555. libs/numeric/ublas/test2/test23.cpp
  556. : # args
  557. : # input files
  558. : # requirements
  559. # borland warns so often that successful compilation is prevented.
  560. <borland><*><cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
  561. ]
  562. [ run libs/numeric/ublas/test3/test3.cpp
  563. libs/numeric/ublas/test3/test31.cpp
  564. libs/numeric/ublas/test3/test32.cpp
  565. libs/numeric/ublas/test3/test33.cpp
  566. : # args
  567. : # input files
  568. : # requirements
  569. # borland warns so often that successful compilation is prevented.
  570. <borland><*><cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
  571. ]
  572. [ run libs/numeric/ublas/test4/test4.cpp
  573. libs/numeric/ublas/test4/test41.cpp
  574. libs/numeric/ublas/test4/test42.cpp
  575. libs/numeric/ublas/test4/test43.cpp
  576. : # args
  577. : # input files
  578. : # requirements
  579. # borland warns so often that successful compilation is prevented.
  580. <borland><*><cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
  581. ]
  582. [ run libs/numeric/ublas/test5/test5.cpp
  583. libs/numeric/ublas/test5/test51.cpp
  584. libs/numeric/ublas/test5/test52.cpp
  585. libs/numeric/ublas/test5/test53.cpp
  586. : # args
  587. : # input files
  588. : # requirements
  589. # borland warns so often that successful compilation is prevented.
  590. <borland><*><cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
  591. ]
  592. [ run libs/numeric/ublas/test6/test6.cpp
  593. libs/numeric/ublas/test6/test61.cpp
  594. libs/numeric/ublas/test6/test62.cpp
  595. libs/numeric/ublas/test6/test63.cpp
  596. : # args
  597. : # input files
  598. : # requirements
  599. # borland warns so often that successful compilation is prevented.
  600. <borland><*><cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
  601. ]
  602. [ run libs/numeric/ublas/concepts.cpp
  603. : # args
  604. : # input files
  605. : # requirements
  606. # borland warns so often that successful compilation is prevented.
  607. <borland><*><cxxflags>"-w-8026 -w-8027 -w-8057 -w-8084 -w-8092"
  608. ]
  609. ;
  610. test-suite multi_array
  611. : [ run libs/multi_array/test/constructors.cpp <lib>../libs/test/build/test_exec_monitor ]
  612. [ run libs/multi_array/test/access.cpp <lib>../libs/test/build/test_exec_monitor ]
  613. [ run libs/multi_array/test/compare.cpp <lib>../libs/test/build/test_exec_monitor ]
  614. [ run libs/multi_array/test/iterators.cpp <lib>../libs/test/build/test_exec_monitor ]
  615. [ run libs/multi_array/test/slice.cpp <lib>../libs/test/build/test_exec_monitor ]
  616. [ run libs/multi_array/test/assign.cpp <lib>../libs/test/build/test_exec_monitor ]
  617. [ run libs/multi_array/test/index_bases.cpp <lib>../libs/test/build/test_exec_monitor ]
  618. [ run libs/multi_array/test/storage_order.cpp <lib>../libs/test/build/test_exec_monitor ]
  619. [ run libs/multi_array/test/reshape.cpp <lib>../libs/test/build/test_exec_monitor ]
  620. [ run libs/multi_array/test/range1.cpp <lib>../libs/test/build/test_exec_monitor ]
  621. [ run libs/multi_array/test/idxgen1.cpp <lib>../libs/test/build/test_exec_monitor ]
  622. [ run libs/multi_array/test/stl_interaction.cpp <lib>../libs/test/build/test_exec_monitor ]
  623. [ compile libs/multi_array/test/concept_checks.cpp ]
  624. [ compile-fail libs/multi_array/test/fail_cbracket.cpp ]
  625. [ compile-fail libs/multi_array/test/fail_cdata.cpp ]
  626. [ compile-fail libs/multi_array/test/fail_citerator.cpp ]
  627. [ compile-fail libs/multi_array/test/fail_cparen.cpp ]
  628. [ compile-fail libs/multi_array/test/fail_criterator.cpp ]
  629. [ compile-fail libs/multi_array/test/fail_csubarray.cpp ]
  630. [ compile-fail libs/multi_array/test/fail_csubarray2.cpp ]
  631. [ compile-fail libs/multi_array/test/fail_csubarray3.cpp ]
  632. [ compile-fail libs/multi_array/test/fail_cview.cpp ]
  633. [ compile-fail libs/multi_array/test/fail_cview2.cpp ]
  634. [ compile-fail libs/multi_array/test/fail_cview3.cpp ]
  635. [ compile-fail libs/multi_array/test/fail_ref_cbracket.cpp ]
  636. [ compile-fail libs/multi_array/test/fail_ref_cdata.cpp ]
  637. [ compile-fail libs/multi_array/test/fail_ref_citerator.cpp ]
  638. [ compile-fail libs/multi_array/test/fail_ref_cparen.cpp ]
  639. [ compile-fail libs/multi_array/test/fail_ref_criterator.cpp ]
  640. [ compile-fail libs/multi_array/test/fail_ref_csubarray.cpp ]
  641. [ compile-fail libs/multi_array/test/fail_ref_csubarray2.cpp ]
  642. [ compile-fail libs/multi_array/test/fail_ref_csubarray3.cpp ]
  643. [ compile-fail libs/multi_array/test/fail_ref_cview.cpp ]
  644. [ compile-fail libs/multi_array/test/fail_ref_cview2.cpp ]
  645. [ compile-fail libs/multi_array/test/fail_ref_cview3.cpp ]
  646. ;
  647. test-suite utility
  648. :
  649. [ run libs/utility/iterator_traits_test.cpp ]
  650. [ run libs/utility/iterators_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  651. [ compile-fail libs/utility/noncopyable_test.cpp ]
  652. [ run libs/utility/numeric_traits_test.cpp ]
  653. [ run libs/utility/operators_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  654. [ run libs/utility/tie_example.cpp ]
  655. [ run libs/utility/binary_search_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  656. [ run libs/utility/call_traits_test.cpp : -u ]
  657. [ compile-fail libs/utility/checked_delete_test.cpp ]
  658. [ run libs/utility/compressed_pair_test.cpp <lib>../libs/test/build/test_exec_monitor : -u ]
  659. [ run libs/utility/addressof_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  660. [ run libs/utility/ref_test.cpp <lib>../libs/test/build/test_exec_monitor ]
  661. ;
  662. {
  663. local TYPE_TRAIT_PATH = "../libs/type_traits/test/" ;
  664. local TEST_LIB_PATH = "../libs/test/build/" ;
  665. test-suite type_traits :
  666. [ lib type_traits_init : $(TYPE_TRAIT_PATH)init.cpp
  667. :
  668. <sysinclude>$(BOOST_ROOT)
  669. :
  670. ]
  671. [ run $(TYPE_TRAIT_PATH)add_const_test.cpp
  672. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  673. <lib>$(TEST_LIB_PATH)unit_test_framework
  674. :
  675. --report_level=detailed --build_info=yes --log_level=messages
  676. :
  677. :
  678. <sysinclude>$(BOOST_ROOT)
  679. :
  680. ]
  681. [ run $(TYPE_TRAIT_PATH)add_pointer_test.cpp
  682. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  683. <lib>$(TEST_LIB_PATH)unit_test_framework
  684. :
  685. --report_level=detailed --build_info=yes --log_level=messages
  686. :
  687. :
  688. <sysinclude>$(BOOST_ROOT)
  689. :
  690. ]
  691. [ run $(TYPE_TRAIT_PATH)add_reference_test.cpp
  692. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  693. <lib>$(TEST_LIB_PATH)unit_test_framework
  694. :
  695. --report_level=detailed --build_info=yes --log_level=messages
  696. :
  697. :
  698. <sysinclude>$(BOOST_ROOT)
  699. :
  700. ]
  701. [ run $(TYPE_TRAIT_PATH)add_volatile_test.cpp
  702. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  703. <lib>$(TEST_LIB_PATH)unit_test_framework
  704. :
  705. --report_level=detailed --build_info=yes --log_level=messages
  706. :
  707. :
  708. <sysinclude>$(BOOST_ROOT)
  709. :
  710. ]
  711. [ run $(TYPE_TRAIT_PATH)alignment_of_test.cpp
  712. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  713. <lib>$(TEST_LIB_PATH)unit_test_framework
  714. :
  715. --report_level=detailed --build_info=yes --log_level=messages
  716. :
  717. :
  718. <sysinclude>$(BOOST_ROOT)
  719. :
  720. ]
  721. [ run $(TYPE_TRAIT_PATH)function_traits_test.cpp
  722. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  723. <lib>$(TEST_LIB_PATH)unit_test_framework
  724. :
  725. --report_level=detailed --build_info=yes --log_level=messages
  726. :
  727. :
  728. <sysinclude>$(BOOST_ROOT)
  729. :
  730. ]
  731. [ run $(TYPE_TRAIT_PATH)has_nothrow_assign_test.cpp
  732. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  733. <lib>$(TEST_LIB_PATH)unit_test_framework
  734. :
  735. --report_level=detailed --build_info=yes --log_level=messages
  736. :
  737. :
  738. <sysinclude>$(BOOST_ROOT)
  739. :
  740. ]
  741. [ run $(TYPE_TRAIT_PATH)has_nothrow_constructor_test.cpp
  742. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  743. <lib>$(TEST_LIB_PATH)unit_test_framework
  744. :
  745. --report_level=detailed --build_info=yes --log_level=messages
  746. :
  747. :
  748. <sysinclude>$(BOOST_ROOT)
  749. :
  750. ]
  751. [ run $(TYPE_TRAIT_PATH)has_nothrow_copy_test.cpp
  752. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  753. <lib>$(TEST_LIB_PATH)unit_test_framework
  754. :
  755. --report_level=detailed --build_info=yes --log_level=messages
  756. :
  757. :
  758. <sysinclude>$(BOOST_ROOT)
  759. :
  760. ]
  761. [ run $(TYPE_TRAIT_PATH)has_trivial_assign_test.cpp
  762. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  763. <lib>$(TEST_LIB_PATH)unit_test_framework
  764. :
  765. --report_level=detailed --build_info=yes --log_level=messages
  766. :
  767. :
  768. <sysinclude>$(BOOST_ROOT)
  769. :
  770. ]
  771. [ run $(TYPE_TRAIT_PATH)has_trivial_constructor_test.cpp
  772. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  773. <lib>$(TEST_LIB_PATH)unit_test_framework
  774. :
  775. --report_level=detailed --build_info=yes --log_level=messages
  776. :
  777. :
  778. <sysinclude>$(BOOST_ROOT)
  779. :
  780. ]
  781. [ run $(TYPE_TRAIT_PATH)has_trivial_copy_test.cpp
  782. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  783. <lib>$(TEST_LIB_PATH)unit_test_framework
  784. :
  785. --report_level=detailed --build_info=yes --log_level=messages
  786. :
  787. :
  788. <sysinclude>$(BOOST_ROOT)
  789. :
  790. ]
  791. [ run $(TYPE_TRAIT_PATH)has_trivial_destructor_test.cpp
  792. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  793. <lib>$(TEST_LIB_PATH)unit_test_framework
  794. :
  795. --report_level=detailed --build_info=yes --log_level=messages
  796. :
  797. :
  798. <sysinclude>$(BOOST_ROOT)
  799. :
  800. ]
  801. [ run $(TYPE_TRAIT_PATH)is_arithmetic_test.cpp
  802. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  803. <lib>$(TEST_LIB_PATH)unit_test_framework
  804. :
  805. --report_level=detailed --build_info=yes --log_level=messages
  806. :
  807. :
  808. <sysinclude>$(BOOST_ROOT)
  809. :
  810. ]
  811. [ run $(TYPE_TRAIT_PATH)is_array_test.cpp
  812. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  813. <lib>$(TEST_LIB_PATH)unit_test_framework
  814. :
  815. --report_level=detailed --build_info=yes --log_level=messages
  816. :
  817. :
  818. <sysinclude>$(BOOST_ROOT)
  819. :
  820. ]
  821. [ run $(TYPE_TRAIT_PATH)is_base_and_derived_test.cpp
  822. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  823. <lib>$(TEST_LIB_PATH)unit_test_framework
  824. :
  825. --report_level=detailed --build_info=yes --log_level=messages
  826. :
  827. :
  828. <sysinclude>$(BOOST_ROOT)
  829. :
  830. ]
  831. [ run $(TYPE_TRAIT_PATH)is_class_test.cpp
  832. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  833. <lib>$(TEST_LIB_PATH)unit_test_framework
  834. :
  835. --report_level=detailed --build_info=yes --log_level=messages
  836. :
  837. :
  838. <sysinclude>$(BOOST_ROOT)
  839. :
  840. ]
  841. [ run $(TYPE_TRAIT_PATH)is_compound_test.cpp
  842. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  843. <lib>$(TEST_LIB_PATH)unit_test_framework
  844. :
  845. --report_level=detailed --build_info=yes --log_level=messages
  846. :
  847. :
  848. <sysinclude>$(BOOST_ROOT)
  849. :
  850. ]
  851. [ run $(TYPE_TRAIT_PATH)is_const_test.cpp
  852. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  853. <lib>$(TEST_LIB_PATH)unit_test_framework
  854. :
  855. --report_level=detailed --build_info=yes --log_level=messages
  856. :
  857. :
  858. <sysinclude>$(BOOST_ROOT)
  859. :
  860. ]
  861. [ run $(TYPE_TRAIT_PATH)is_convertible_test.cpp
  862. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  863. <lib>$(TEST_LIB_PATH)unit_test_framework
  864. :
  865. --report_level=detailed --build_info=yes --log_level=messages
  866. :
  867. :
  868. <sysinclude>$(BOOST_ROOT)
  869. :
  870. ]
  871. [ run $(TYPE_TRAIT_PATH)is_empty_test.cpp
  872. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  873. <lib>$(TEST_LIB_PATH)unit_test_framework
  874. :
  875. --report_level=detailed --build_info=yes --log_level=messages
  876. :
  877. :
  878. <sysinclude>$(BOOST_ROOT)
  879. :
  880. ]
  881. [ run $(TYPE_TRAIT_PATH)is_enum_test.cpp
  882. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  883. <lib>$(TEST_LIB_PATH)unit_test_framework
  884. :
  885. --report_level=detailed --build_info=yes --log_level=messages
  886. :
  887. :
  888. <sysinclude>$(BOOST_ROOT)
  889. :
  890. ]
  891. [ run $(TYPE_TRAIT_PATH)is_float_test.cpp
  892. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  893. <lib>$(TEST_LIB_PATH)unit_test_framework
  894. :
  895. --report_level=detailed --build_info=yes --log_level=messages
  896. :
  897. :
  898. <sysinclude>$(BOOST_ROOT)
  899. :
  900. ]
  901. [ run $(TYPE_TRAIT_PATH)is_function_test.cpp
  902. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  903. <lib>$(TEST_LIB_PATH)unit_test_framework
  904. :
  905. --report_level=detailed --build_info=yes --log_level=messages
  906. :
  907. :
  908. <sysinclude>$(BOOST_ROOT)
  909. :
  910. ]
  911. [ run $(TYPE_TRAIT_PATH)is_fundamental_test.cpp
  912. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  913. <lib>$(TEST_LIB_PATH)unit_test_framework
  914. :
  915. --report_level=detailed --build_info=yes --log_level=messages
  916. :
  917. :
  918. <sysinclude>$(BOOST_ROOT)
  919. :
  920. ]
  921. [ run $(TYPE_TRAIT_PATH)is_integral_test.cpp
  922. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  923. <lib>$(TEST_LIB_PATH)unit_test_framework
  924. :
  925. --report_level=detailed --build_info=yes --log_level=messages
  926. :
  927. :
  928. <sysinclude>$(BOOST_ROOT)
  929. :
  930. ]
  931. [ run $(TYPE_TRAIT_PATH)is_member_function_pointer_test.cpp
  932. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  933. <lib>$(TEST_LIB_PATH)unit_test_framework
  934. :
  935. --report_level=detailed --build_info=yes --log_level=messages
  936. :
  937. :
  938. <sysinclude>$(BOOST_ROOT)
  939. :
  940. ]
  941. [ run $(TYPE_TRAIT_PATH)is_member_pointer_test.cpp
  942. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  943. <lib>$(TEST_LIB_PATH)unit_test_framework
  944. :
  945. --report_level=detailed --build_info=yes --log_level=messages
  946. :
  947. :
  948. <sysinclude>$(BOOST_ROOT)
  949. :
  950. ]
  951. [ run $(TYPE_TRAIT_PATH)is_object_test.cpp
  952. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  953. <lib>$(TEST_LIB_PATH)unit_test_framework
  954. :
  955. --report_level=detailed --build_info=yes --log_level=messages
  956. :
  957. :
  958. <sysinclude>$(BOOST_ROOT)
  959. :
  960. ]
  961. [ run $(TYPE_TRAIT_PATH)is_pod_test.cpp
  962. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  963. <lib>$(TEST_LIB_PATH)unit_test_framework
  964. :
  965. --report_level=detailed --build_info=yes --log_level=messages
  966. :
  967. :
  968. <sysinclude>$(BOOST_ROOT)
  969. :
  970. ]
  971. [ run $(TYPE_TRAIT_PATH)is_pointer_test.cpp
  972. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  973. <lib>$(TEST_LIB_PATH)unit_test_framework
  974. :
  975. --report_level=detailed --build_info=yes --log_level=messages
  976. :
  977. :
  978. <sysinclude>$(BOOST_ROOT)
  979. :
  980. ]
  981. [ run $(TYPE_TRAIT_PATH)is_reference_test.cpp
  982. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  983. <lib>$(TEST_LIB_PATH)unit_test_framework
  984. :
  985. --report_level=detailed --build_info=yes --log_level=messages
  986. :
  987. :
  988. <sysinclude>$(BOOST_ROOT)
  989. :
  990. ]
  991. [ run $(TYPE_TRAIT_PATH)is_same_test.cpp
  992. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  993. <lib>$(TEST_LIB_PATH)unit_test_framework
  994. :
  995. --report_level=detailed --build_info=yes --log_level=messages
  996. :
  997. :
  998. <sysinclude>$(BOOST_ROOT)
  999. :
  1000. ]
  1001. [ run $(TYPE_TRAIT_PATH)is_scalar_test.cpp
  1002. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  1003. <lib>$(TEST_LIB_PATH)unit_test_framework
  1004. :
  1005. --report_level=detailed --build_info=yes --log_level=messages
  1006. :
  1007. :
  1008. <sysinclude>$(BOOST_ROOT)
  1009. :
  1010. ]
  1011. [ run $(TYPE_TRAIT_PATH)is_union_test.cpp
  1012. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  1013. <lib>$(TEST_LIB_PATH)unit_test_framework
  1014. :
  1015. --report_level=detailed --build_info=yes --log_level=messages
  1016. :
  1017. :
  1018. <sysinclude>$(BOOST_ROOT)
  1019. :
  1020. ]
  1021. [ run $(TYPE_TRAIT_PATH)is_void_test.cpp
  1022. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  1023. <lib>$(TEST_LIB_PATH)unit_test_framework
  1024. :
  1025. --report_level=detailed --build_info=yes --log_level=messages
  1026. :
  1027. :
  1028. <sysinclude>$(BOOST_ROOT)
  1029. :
  1030. ]
  1031. [ run $(TYPE_TRAIT_PATH)is_volatile_test.cpp
  1032. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  1033. <lib>$(TEST_LIB_PATH)unit_test_framework
  1034. :
  1035. --report_level=detailed --build_info=yes --log_level=messages
  1036. :
  1037. :
  1038. <sysinclude>$(BOOST_ROOT)
  1039. :
  1040. ]
  1041. [ run $(TYPE_TRAIT_PATH)remove_bounds_test.cpp
  1042. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  1043. <lib>$(TEST_LIB_PATH)unit_test_framework
  1044. :
  1045. --report_level=detailed --build_info=yes --log_level=messages
  1046. :
  1047. :
  1048. <sysinclude>$(BOOST_ROOT)
  1049. :
  1050. ]
  1051. [ run $(TYPE_TRAIT_PATH)remove_const_test.cpp
  1052. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  1053. <lib>$(TEST_LIB_PATH)unit_test_framework
  1054. :
  1055. --report_level=detailed --build_info=yes --log_level=messages
  1056. :
  1057. :
  1058. <sysinclude>$(BOOST_ROOT)
  1059. :
  1060. ]
  1061. [ run $(TYPE_TRAIT_PATH)remove_cv_test.cpp
  1062. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  1063. <lib>$(TEST_LIB_PATH)unit_test_framework
  1064. :
  1065. --report_level=detailed --build_info=yes --log_level=messages
  1066. :
  1067. :
  1068. <sysinclude>$(BOOST_ROOT)
  1069. :
  1070. ]
  1071. [ run $(TYPE_TRAIT_PATH)remove_pointer_test.cpp
  1072. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  1073. <lib>$(TEST_LIB_PATH)unit_test_framework
  1074. :
  1075. --report_level=detailed --build_info=yes --log_level=messages
  1076. :
  1077. :
  1078. <sysinclude>$(BOOST_ROOT)
  1079. :
  1080. ]
  1081. [ run $(TYPE_TRAIT_PATH)remove_reference_test.cpp
  1082. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  1083. <lib>$(TEST_LIB_PATH)unit_test_framework
  1084. :
  1085. --report_level=detailed --build_info=yes --log_level=messages
  1086. :
  1087. :
  1088. <sysinclude>$(BOOST_ROOT)
  1089. :
  1090. ]
  1091. [ run $(TYPE_TRAIT_PATH)remove_volatile_test.cpp
  1092. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  1093. <lib>$(TEST_LIB_PATH)unit_test_framework
  1094. :
  1095. --report_level=detailed --build_info=yes --log_level=messages
  1096. :
  1097. :
  1098. <sysinclude>$(BOOST_ROOT)
  1099. :
  1100. ]
  1101. [ run $(TYPE_TRAIT_PATH)tricky_abstract_type_test.cpp
  1102. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  1103. <lib>$(TEST_LIB_PATH)unit_test_framework
  1104. :
  1105. --report_level=detailed --build_info=yes --log_level=messages
  1106. :
  1107. :
  1108. <sysinclude>$(BOOST_ROOT)
  1109. :
  1110. ]
  1111. [ run $(TYPE_TRAIT_PATH)tricky_add_pointer_test.cpp
  1112. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  1113. <lib>$(TEST_LIB_PATH)unit_test_framework
  1114. :
  1115. --report_level=detailed --build_info=yes --log_level=messages
  1116. :
  1117. :
  1118. <sysinclude>$(BOOST_ROOT)
  1119. :
  1120. ]
  1121. [ run $(TYPE_TRAIT_PATH)tricky_function_type_test.cpp
  1122. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  1123. <lib>$(TEST_LIB_PATH)unit_test_framework
  1124. :
  1125. --report_level=detailed --build_info=yes --log_level=messages
  1126. :
  1127. :
  1128. <sysinclude>$(BOOST_ROOT)
  1129. :
  1130. ]
  1131. [ run $(TYPE_TRAIT_PATH)tricky_incomplete_type_test.cpp
  1132. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  1133. <lib>$(TEST_LIB_PATH)unit_test_framework
  1134. :
  1135. --report_level=detailed --build_info=yes --log_level=messages
  1136. :
  1137. :
  1138. <sysinclude>$(BOOST_ROOT)
  1139. :
  1140. ]
  1141. [ run $(TYPE_TRAIT_PATH)tricky_partial_specialization_test.cpp
  1142. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  1143. <lib>$(TEST_LIB_PATH)unit_test_framework
  1144. :
  1145. --report_level=detailed --build_info=yes --log_level=messages
  1146. :
  1147. :
  1148. <sysinclude>$(BOOST_ROOT)
  1149. :
  1150. ]
  1151. [ run $(TYPE_TRAIT_PATH)type_with_alignment_test.cpp
  1152. <lib>$(TYPE_TRAIT_PATH)type_traits_init
  1153. <lib>$(TEST_LIB_PATH)unit_test_framework
  1154. :
  1155. --report_level=detailed --build_info=yes --log_level=messages
  1156. :
  1157. :
  1158. <sysinclude>$(BOOST_ROOT)
  1159. :
  1160. ]
  1161. ;
  1162. }
  1163. }
粤ICP备19079148号