explicit-failures-markup.xml 88 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388
  1. <explicit-failures-markup
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="explicit-failures.xsd"
  4. >
  5. <!--
  6. The following online services can be used to validate your changes to this file:
  7. - http://apps.gotdotnet.com/xmltools/xsdvalidator/
  8. When using the gotdotnet tool you need to provide both the explicit-failures-markup.xml
  9. file as the XML document and the explicit-failures.xsd as the schema document. Use the
  10. browse buttons to select them from your local hard drive.
  11. - http://tools.decisionsoft.com/schemaValidate.html
  12. -->
  13. <!-- /////////////// Toolsets /////////////// -->
  14. <mark-toolset name="borland-5_6_4" status="required"/>
  15. <mark-toolset name="cw-9_4" status="required"/>
  16. <mark-toolset name="cw-8_3" status="required"/>
  17. <mark-toolset name="cw-9_3-darwin" status="required"/>
  18. <mark-toolset name="cw-9_4-darwin" status="required"/>
  19. <mark-toolset name="msvc" status="required"/>
  20. <mark-toolset name="msvc-stlport" status="required"/>
  21. <mark-toolset name="vc7" status="required"/>
  22. <mark-toolset name="vc-7_1" status="required"/>
  23. <mark-toolset name="vc-8_0" status="required"/>
  24. <mark-toolset name="mingw-3_4_2" status="required"/>
  25. <mark-toolset name="mingw-3_3_1" status="required"/>
  26. <mark-toolset name="gcc-2.95.3-linux" status="required"/>
  27. <mark-toolset name="gcc-2.95.3-stlport-4.5.3-linux" status="required"/>
  28. <mark-toolset name="gcc-3.3.5-linux" status="required"/>
  29. <mark-toolset name="gcc-3.4.3-linux" status="required"/>
  30. <mark-toolset name="gcc-3_3-darwin" status="required"/>
  31. <mark-toolset name="iw-7_1-vc6" status="required"/>
  32. <mark-toolset name="iw-7_1-vc6-stlp-4_5_3" status="required"/>
  33. <mark-toolset name="intel-win32-8_0" status="required"/>
  34. <mark-toolset name="intel-8.1-linux" status="required"/>
  35. <!-- /////////////// Libraries /////////////// -->
  36. <!-- minmax -->
  37. <library name="algorithm/minmax">
  38. <mark-unusable>
  39. <toolset name="sunpro-5_3-sunos"/>
  40. </mark-unusable>
  41. </library>
  42. <!-- string_algo -->
  43. <library name="algorithm/string">
  44. <mark-unusable>
  45. <toolset name="borland"/>
  46. <toolset name="borland-5_6_4"/>
  47. <toolset name="msvc"/>
  48. <toolset name="msvc-stlport"/>
  49. <toolset name="iw-7_1-vc6"/>
  50. <toolset name="gcc-2.95.3-linux"/>
  51. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  52. <toolset name="mipspro"/>
  53. <toolset name="sunpro-5_3-sunos"/>
  54. <note author="P.Droba">
  55. The compiler does not support features that are essential for the library.
  56. </note>
  57. </mark-unusable>
  58. </library>
  59. <!-- array -->
  60. <library name="array">
  61. <test name="array3">
  62. <mark-failure>
  63. <toolset name="borland"/>
  64. <toolset name="borland-5_6_4"/>
  65. <toolset name="msvc"/>
  66. <toolset name="vc7"/>
  67. <note refid="3"/>
  68. </mark-failure>
  69. <mark-failure>
  70. <toolset name="sunpro-5_3-sunos"/>
  71. <note refid="4"/>
  72. </mark-failure>
  73. </test>
  74. <test name="array4">
  75. <mark-failure>
  76. <toolset name="borland"/>
  77. <toolset name="borland-5_6_4"/>
  78. <toolset name="msvc"/>
  79. <toolset name="vc7"/>
  80. <note refid="3"/>
  81. </mark-failure>
  82. </test>
  83. </library>
  84. <!-- assign -->
  85. <library name="assign">
  86. <mark-expected-failures>
  87. <test name="array"/>
  88. <toolset name="msvc-stlport"/>
  89. <toolset name="vc7"/>
  90. <note author="Thorsten Ottosen" >
  91. The test would (most likely) compile and run properly if the workaround
  92. syntax .to_container( c ) was applied to all list_of() expressions.
  93. </note>
  94. </mark-expected-failures>
  95. <mark-expected-failures>
  96. <test name="email_example"/>
  97. <toolset name="gcc-2.95.3*"/>
  98. <note refid="27" author="Thorsten Ottosen"/>
  99. </mark-expected-failures>
  100. <mark-expected-failures>
  101. <test name="list_inserter"/>
  102. <toolset name="vc7"/>
  103. <note refid="6" author="Thorsten Ottosen"/>
  104. </mark-expected-failures>
  105. <mark-expected-failures>
  106. <test name="list_of"/>
  107. <toolset name="borland-5_6_4"/>
  108. <toolset name="msvc"/>
  109. <toolset name="msvc-stlport"/>
  110. <toolset name="vc7"/>
  111. <note author="Thorsten Ottosen" >
  112. The test would (most likely) compile and run properly if the workaround
  113. syntax .to_container( c ) was applied to all list_of() expressions.
  114. </note>
  115. </mark-expected-failures>
  116. <mark-expected-failures>
  117. <test name="multi_index_container"/>
  118. <toolset name="borland-5_6_4"/>
  119. <toolset name="gcc-2.95.3*"/>
  120. <toolset name="intel-8.0-linux"/>
  121. <toolset name="intel-8.1-linux"/>
  122. <toolset name="gcc-3.4.1*"/>
  123. <toolset name="gcc-3.4.2*"/>
  124. <note refid="27" author="Thorsten Ottosen"/>
  125. </mark-expected-failures>
  126. <mark-expected-failures>
  127. <test name="multi_index_container"/>
  128. <toolset name="msvc"/>
  129. <toolset name="msvc-stlport"/>
  130. <toolset name="vc7"/>
  131. <toolset name="mipspro"/>
  132. <toolset name="tru64cxx65"/>
  133. <note author="Thorsten Ottosen" >
  134. The test would (most likely) compile and run properly if the workaround
  135. syntax .to_container( c ) was applied to all list_of() expressions.
  136. </note>
  137. </mark-expected-failures>
  138. <mark-expected-failures>
  139. <test name="my_vector_example"/>
  140. <toolset name="gcc-2.95.3*"/>
  141. <note refid="27" author="Thorsten Ottosen"/>
  142. </mark-expected-failures>
  143. </library>
  144. <!-- bind-->
  145. <library name="bind">
  146. <mark-expected-failures>
  147. <test name="bind_cv_test"/>
  148. <test name="bind_stateful_test"/>
  149. <toolset name="intel-7.1-linux"/>
  150. <toolset name="intel-7.1-stdlib-default-linux"/>
  151. <note refid="2" author="Aleksey Gurtovoy"/>
  152. </mark-expected-failures>
  153. <mark-expected-failures>
  154. <test name="bind_dm2_test"/>
  155. <test name="mem_fn_dm_test"/>
  156. <toolset name="msvc*"/>
  157. <toolset name="vc7"/>
  158. <toolset name="cw-8_3"/>
  159. <note refid="31" author="Peter Dimov"/>
  160. </mark-expected-failures>
  161. <mark-expected-failures>
  162. <test name="bind_dm_test"/>
  163. <toolset name="msvc*"/>
  164. <toolset name="sunpro-5_3-sunos"/>
  165. <note refid="31" author="Peter Dimov"/>
  166. </mark-expected-failures>
  167. <mark-expected-failures>
  168. <test name="mem_fn_derived_test"/>
  169. <toolset name="sunpro-5_3-sunos"/>
  170. <note refid="31" author="Peter Dimov"/>
  171. </mark-expected-failures>
  172. </library>
  173. <!-- concept_check -->
  174. <library name="concept_check">
  175. <test name="class_concept_fail_expected">
  176. <mark-failure>
  177. <toolset name="cw-8_3*"/>
  178. <note author="B. Dawes" refid="3"/>
  179. </mark-failure>
  180. </test>
  181. </library>
  182. <!-- config -->
  183. <library name="config">
  184. <test name="config_test">
  185. <mark-failure>
  186. <toolset name="intel-win32"/>
  187. <note author="B. Dawes" refid="3"/>
  188. </mark-failure>
  189. </test>
  190. <test name="config_link_test">
  191. <mark-failure>
  192. <toolset name="*como-4_3_3-vc7*"/>
  193. <note author="J. Maddock" refid="3"/>
  194. </mark-failure>
  195. </test>
  196. <test name="limits_test">
  197. <mark-failure>
  198. <toolset name="cw-8_3*"/>
  199. <note author="B. Dawes" refid="3"/>
  200. </mark-failure>
  201. </test>
  202. <test name="limits_test">
  203. <mark-failure>
  204. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  205. <note author="Aleksey Gurtovoy" refid="4"/>
  206. </mark-failure>
  207. </test>
  208. <test name="test_thread_fail1">
  209. <mark-failure>
  210. <toolset name="sunpro-5_3-sunos"/>
  211. <note author="J. Maddock" refid="3"/>
  212. </mark-failure>
  213. </test>
  214. <test name="test_thread_fail2">
  215. <mark-failure>
  216. <toolset name="sunpro-5_3-sunos"/>
  217. <note author="J. Maddock" refid="3"/>
  218. </mark-failure>
  219. </test>
  220. </library>
  221. <!-- conversion -->
  222. <library name="conversion">
  223. <test name="lexical_cast_test">
  224. <mark-failure>
  225. <toolset name="vc-8_0"/>
  226. <note author="Aleksey Gurtovoy" refid="4"/>
  227. </mark-failure>
  228. <mark-failure>
  229. <toolset name="sunpro-5_3-sunos"/>
  230. <note author="Douglas Gregor" refid="3"/>
  231. </mark-failure>
  232. </test>
  233. </library>
  234. <!-- crc -->
  235. <library name="crc">
  236. <test name="crc_test">
  237. <mark-failure>
  238. <toolset name="sunpro-5_3-sunos"/>
  239. <note author="Douglas Gregor" refid="3"/>
  240. </mark-failure>
  241. </test>
  242. </library>
  243. <!-- date_time -->
  244. <library name="date_time">
  245. <mark-unusable>
  246. <toolset name="sunpro-5_3-sunos"/>
  247. <toolset name="msvc-stlport"/>
  248. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  249. <toolset name="iw-7_1-vc6"/>
  250. </mark-unusable>
  251. <test name="testgreg_serialize*">
  252. <mark-failure>
  253. <toolset name="msvc*"/>
  254. <toolset name="gcc-2.*"/>
  255. <toolset name="tru64cxx65-042"/>
  256. <toolset name="vc7"/>
  257. <note author="B. Garst">The serialization library does not support this compiler.
  258. </note>
  259. </mark-failure>
  260. </test>
  261. <test name="testtime_serialize*">
  262. <mark-failure>
  263. <toolset name="msvc*"/>
  264. <toolset name="gcc-2.*"/>
  265. <toolset name="tru64cxx65-042"/>
  266. <toolset name="vc7"/>
  267. <note author="B. Garst">The serialization library does not support this compiler.
  268. </note>
  269. </mark-failure>
  270. </test>
  271. <test name="testdate_iterator">
  272. <mark-failure>
  273. <toolset name="intel-7.1-stdlib-default-linux"/>
  274. <toolset name="intel-7.1-linux"/>
  275. <note author="J. Garland" refid="19,21"/>
  276. </mark-failure>
  277. </test>
  278. <test name="testdate_iterator_dll">
  279. <mark-failure>
  280. <toolset name="intel-7.1-stdlib-default-linux"/>
  281. <toolset name="intel-7.1-linux"/>
  282. <note author="J. Garland" refid="19,21"/>
  283. </mark-failure>
  284. </test>
  285. <test name="testgeneric_period">
  286. <mark-failure>
  287. <toolset name="intel-7.1-stdlib-default-linux"/>
  288. <toolset name="intel-7.1-linux"/>
  289. <note author="J. Garland">These are strange runtime failures for
  290. which there is no obvious explanation. Later versions of the
  291. Intel compiler (eg:8.0) seem to have resolved the issue.
  292. </note>
  293. </mark-failure>
  294. </test>
  295. <test name="testgreg_wstream">
  296. <mark-failure>
  297. <toolset name="msvc"/>
  298. <toolset name="vc7"/>
  299. <toolset name="cw-8_3*"/>
  300. <toolset name="borland-5_6_4"/>
  301. <toolset name="mingw*"/>
  302. <toolset name="gcc"/>
  303. <toolset name="gcc-2.95.3-linux"/>
  304. <toolset name="gcc-3.1-darwin"/>
  305. <toolset name="*como-4_3_3*"/>
  306. <toolset name="tru64cxx65-042"/>
  307. <note author="B. Garst" refid="19,21"/>
  308. </mark-failure>
  309. </test>
  310. <test name="testlocal_time_facet">
  311. <mark-failure>
  312. <toolset name="msvc"/>
  313. <toolset name="vc7"/>
  314. <toolset name="mingw*"/>
  315. <note author="J. Garland">
  316. Some older compilers are confused by the template code here.
  317. These are new features to date-time in 1.33 and there is no
  318. plan to backport to these non-compliant compilers.
  319. </note>
  320. </mark-failure>
  321. </test>
  322. <test name="testlocal_time">
  323. <mark-failure>
  324. <toolset name="msvc"/>
  325. <note author="J. Garland">
  326. Some older compilers are confused by the template code here.
  327. These are new features to date-time in 1.33 and there is no
  328. plan to backport to these non-compliant compilers.
  329. </note>
  330. </mark-failure>
  331. </test>
  332. <test name="testclocks">
  333. <mark-failure>
  334. <toolset name="gcc-2.95.3-linux"/>
  335. <toolset name="borland-5_6_4"/>
  336. <toolset name="msvc"/>
  337. <note author="J. Garland">
  338. Some older compilers are confused by the template code here.
  339. These are new features to date-time in 1.33 and there is no
  340. plan to backport to these non-compliant compilers.
  341. </note>
  342. </mark-failure>
  343. </test>
  344. <test name="testlocal_time_input_facet">
  345. <mark-failure>
  346. <toolset name="vc7"/>
  347. <toolset name="msvc"/>
  348. <toolset name="gcc-2.95.3-linux"/>
  349. <toolset name="tru64cxx65-042"/>
  350. <note author="J. Garland">
  351. Some older compilers are confused by the template code here.
  352. These are new features to date-time in 1.33 and there is no
  353. plan to backport to these non-compliant compilers.
  354. </note>
  355. </mark-failure>
  356. </test>
  357. <test name="testfacet*">
  358. <mark-failure>
  359. <toolset name="tru64cxx65-042"/>
  360. <note author="J. Garland">
  361. There something non-standard about the tru64 standard library which
  362. is preventing these tests from compiling.
  363. </note>
  364. </mark-failure>
  365. </test>
  366. <test name="testtz_database">
  367. <mark-failure>
  368. <toolset name="msvc"/>
  369. <note author="J. Garland">
  370. Some older compilers are confused by the template code here.
  371. These are new features to date-time in 1.33 and there is no
  372. plan to backport to these non-compliant compilers.
  373. </note>
  374. </mark-failure>
  375. </test>
  376. <test name="testtime_wstream">
  377. <mark-failure>
  378. <toolset name="gcc"/>
  379. <toolset name="gcc-2.95.3-linux"/>
  380. <toolset name="gcc-3.1-darwin"/>
  381. <toolset name="msvc"/>
  382. <toolset name="vc7"/>
  383. <toolset name="borland-5_6_4"/>
  384. <toolset name="mingw*"/>
  385. <toolset name="*como-4_3_3*"/>
  386. <toolset name="tru64cxx65-042"/>
  387. <note author="B. Garst" refid="19,21,22"/>
  388. </mark-failure>
  389. </test>
  390. <test name="testtime_wstream_std_config">
  391. <mark-failure>
  392. <toolset name="gcc"/>
  393. <toolset name="gcc-2.95.3-linux"/>
  394. <toolset name="gcc-3.1-darwin"/>
  395. <toolset name="msvc"/>
  396. <toolset name="vc7"/>
  397. <toolset name="borland-5_6_4"/>
  398. <toolset name="mingw*"/>
  399. <toolset name="*como-4_3_3*"/>
  400. <toolset name="tru64cxx65-042"/>
  401. <note author="B. Garst" refid="19,21,22"/>
  402. </mark-failure>
  403. </test>
  404. <test name="testfacet">
  405. <mark-failure>
  406. <toolset name="gcc-2.95.3-linux"/>
  407. <toolset name="gcc-3.1-darwin"/>
  408. <toolset name="msvc"/>
  409. <toolset name="mingw*"/>
  410. <toolset name="tru64cxx65-042"/>
  411. <note author="B. Garst" refid="18,19"/>
  412. </mark-failure>
  413. </test>
  414. <test name="testfacet_dll">
  415. <mark-failure>
  416. <toolset name="gcc-2.95.3-linux"/>
  417. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  418. <toolset name="gcc-3.1-darwin"/>
  419. <toolset name="msvc"/>
  420. <toolset name="mingw*"/>
  421. <toolset name="*como-4_3_3*"/>
  422. <toolset name="tru64cxx65-042"/>
  423. <note author="B. Garst" refid="18,19"/>
  424. </mark-failure>
  425. <mark-failure>
  426. <toolset name="cw-8_3*"/>
  427. <note author="R. Rivera" refid="25"/>
  428. </mark-failure>
  429. </test>
  430. <test name="testday_dll">
  431. <mark-failure>
  432. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  433. </mark-failure>
  434. </test>
  435. <test name="testgreg_year_dll">
  436. <mark-failure>
  437. <toolset name="*como-4_3_3*"/>
  438. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  439. </mark-failure>
  440. </test>
  441. <test name="testparse_date">
  442. <mark-failure>
  443. <toolset name="gcc-2.95.3-linux"/>
  444. <toolset name="msvc"/>
  445. <toolset name="vc7"/>
  446. <toolset name="tru64cxx65-042"/>
  447. <note author="B. Garst" refid="18,20"/>
  448. </mark-failure>
  449. </test>
  450. <test name="testmicrosec_time_clock">
  451. <mark-failure>
  452. <toolset name="intel-7.1-stdlib-default-linux"/>
  453. <toolset name="*como-4_3_3*"/>
  454. <toolset name="intel-7.1-linux"/>
  455. <note author="B. Garst" refid="22"/>
  456. </mark-failure>
  457. </test>
  458. <test name="teststreams">
  459. <mark-failure>
  460. <toolset name="gcc"/>
  461. <toolset name="gcc-2.95.3-linux"/>
  462. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  463. <toolset name="gcc-3.1-darwin"/>
  464. <toolset name="msvc"/>
  465. <toolset name="cw-8_3*"/>
  466. <toolset name="vc7"/>
  467. <toolset name="borland-5_6_4"/>
  468. <toolset name="mingw-3*"/>
  469. <toolset name="mingw"/>
  470. <toolset name="*como-4_3_3*"/>
  471. <toolset name="tru64cxx65-042"/>
  472. <note author="B. Garst" refid="18,19,20"/>
  473. </mark-failure>
  474. </test>
  475. <test name="testdate_dll">
  476. <mark-failure>
  477. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  478. <toolset name="*como-4_3_3*"/>
  479. <note author="J. Garland" date="30 Jan 2004" id="24"/>
  480. </mark-failure>
  481. </test>
  482. <test name="testgreg_day_dll">
  483. <mark-failure>
  484. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  485. <toolset name="*como-4_3_3*"/>
  486. <note author="J. Garland" date="30 Jan 2004" id="24"/>
  487. </mark-failure>
  488. </test>
  489. <test name="*_dll">
  490. <mark-failure>
  491. <toolset name="*como-4_3_3*"/>
  492. <note author="J. Garland" date="30 Jan 2004" id="24"/>
  493. </mark-failure>
  494. </test>
  495. </library>
  496. <!-- dynamic_bitset -->
  497. <library name="dynamic_bitset">
  498. <test name="dyn_bitset_unit_tests4">
  499. <mark-failure>
  500. <toolset name="cw-9_3"/>
  501. <note author="Aleksey Gurtovoy" refid="2"/>
  502. </mark-failure>
  503. <mark-failure>
  504. <toolset name="cw-9_3-darwin"/>
  505. <note author="Douglas Gregor" refid="2"/>
  506. </mark-failure>
  507. <mark-failure>
  508. <toolset name="sunpro-5_3-sunos"/>
  509. <note author="Douglas Gregor" refid="2"/>
  510. </mark-failure>
  511. </test>
  512. </library>
  513. <!-- filesystem -->
  514. <library name="filesystem">
  515. <mark-unusable>
  516. <toolset name="intel-7.1-linux"/>
  517. <toolset name="intel-7.1-stdlib-default-linux"/>
  518. <note author="Aleksey Gurtovoy">
  519. Due to to standard library bugs this configuration is not supported by
  520. the most recent version of the library.
  521. </note>
  522. </mark-unusable>
  523. </library>
  524. <!-- format -->
  525. <library name="format">
  526. <mark-unusable>
  527. <toolset name="iw-7_1*"/>
  528. <note author="Aleksey Gurtovoy">
  529. The failure is caused by a standard library bug: the
  530. iostream components fail to handle <code>ios::internal</code>
  531. flag.
  532. </note>
  533. </mark-unusable>
  534. </library>
  535. <!-- functional/hash -->
  536. <library name="functional/hash">
  537. <mark-expected-failures>
  538. <test name="hash_value_array_test"/>
  539. <toolset name="msvc"/>
  540. <toolset name="msvc-stlport"/>
  541. <toolset name="vc7"/>
  542. <note author="Daniel James">
  543. hash_value is not overloaded for arrays for older versions
  544. of Visual C++. There is a work around so that
  545. boost::hash&lt;T[N]&gt;, boost::hash_combine and boost::hash_range
  546. work.
  547. </note>
  548. </mark-expected-failures>
  549. <mark-expected-failures>
  550. <test name="hash_function_pointer_test"/>
  551. <toolset name="msvc"/>
  552. <toolset name="msvc-stlport"/>
  553. <toolset name="vc7"/>
  554. <note refid="2" author="Daniel James"/>
  555. </mark-expected-failures>
  556. </library>
  557. <!-- graph -->
  558. <library name="graph">
  559. <mark-unusable>
  560. <toolset name="borland-5_6_4"/>
  561. <toolset name="msvc"/>
  562. <toolset name="msvc-stlport"/>
  563. <toolset name="sunpro-5_3-sunos"/>
  564. </mark-unusable>
  565. <mark-expected-failures>
  566. <test name="adj_matrix_cc"/>
  567. <test name="biconnected_components_test"/>
  568. <test name="bfs_cc"/>
  569. <test name="bundled_properties"/>
  570. <test name="dfs_cc"/>
  571. <test name="dijkstra_cc"/>
  572. <test name="floyd_warshall_test"/>
  573. <test name="gursoy_atun_layout_test"/>
  574. <test name="graphviz_test"/>
  575. <test name="subgraph"/>
  576. <test name="transitive_closure_test"/>
  577. <test name="vector_graph_cc"/>
  578. <toolset name="vc7"/>
  579. <note refid="3" author="D. Gregor"/>
  580. </mark-expected-failures>
  581. <mark-expected-failures>
  582. <test name="betweenness_centrality_test"/>
  583. <toolset name="iw-7_1-vc6*"/>
  584. <toolset name="vc7"/>
  585. <note refid="3" author="Aleksey Gurtovoy"/>
  586. </mark-expected-failures>
  587. <mark-expected-failures>
  588. <test name="graphviz_test"/>
  589. <toolset name="gcc-2.95.3-linux"/>
  590. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  591. <toolset name="cw-8_3"/>
  592. <toolset name="cw-9_3-darwin"/>
  593. <toolset name="cw-9_4"/>
  594. <toolset name="iw-7_1-vc6"/>
  595. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  596. <note refid="3" author="Doug Gregor"/>
  597. </mark-expected-failures>
  598. <mark-expected-failures>
  599. <test name="layout_test"/>
  600. <toolset name="intel-win32-9_0"/>
  601. </mark-expected-failures>
  602. </library>
  603. <!-- io-->
  604. <library name="io">
  605. <mark-expected-failures>
  606. <test name="ios_state_unit_test"/>
  607. <toolset name="borland-5_6_4"/>
  608. <toolset name="iw-7_1-vc6*"/>
  609. <toolset name="msvc"/>
  610. <toolset name="msvc-stlport"/>
  611. <note refid="4" author="Aleksey Gurtovoy"/>
  612. </mark-expected-failures>
  613. </library>
  614. <!-- iostreams -->
  615. <library name="iostreams">
  616. <mark-unusable>
  617. <toolset name="sunpro-5_3-sunos"/>
  618. <note author="Jonathan Turkanis">
  619. Many compiler-specific workarounds will have to applied before toolset is supported.
  620. </note>
  621. </mark-unusable>
  622. <mark-expected-failures>
  623. <test name="seekable_file_test"/>
  624. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  625. <toolset name="borland-5_6_4"/>
  626. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  627. <toolset name="msvc-stlport"/>
  628. <note author="Jonathan Turkanis">
  629. This failure is a result of an undiagnosed STLPort bug;
  630. the test fails even if all Boost components are replaced by
  631. standard library components.
  632. </note>
  633. </mark-expected-failures>
  634. <mark-expected-failures>
  635. <test name="code_converter_test"/>
  636. <toolset name="gcc-2.95.3-linux"/>
  637. <toolset name="mingw"/>
  638. <note author="Jonathan Turkanis">
  639. No wide stream support.
  640. </note>
  641. </mark-expected-failures>
  642. <mark-expected-failures>
  643. <test name="wide_stream_test"/>
  644. <toolset name="gcc-2.95.3-linux"/>
  645. <toolset name="mingw"/>
  646. <note author="Jonathan Turkanis">
  647. No wide stream support.
  648. </note>
  649. </mark-expected-failures>
  650. </library>
  651. <!-- lambda -->
  652. <library name="lambda">
  653. <mark-unusable>
  654. <toolset name="msvc"/>
  655. <toolset name="msvc-stlport"/>
  656. <toolset name="borland"/>
  657. <toolset name="borland-5_6_4"/>
  658. <toolset name="borland-5_5_1"/>
  659. <toolset name="vc7"/>
  660. <toolset name="sunpro-5_3-sunos"/>
  661. <note refid="17">
  662. </note>
  663. </mark-unusable>
  664. <mark-expected-failures>
  665. <test name="bll_and_function"/>
  666. <toolset name="vc-8_0"/>
  667. <note author="Aleksey Gurtovoy" refid="6"/>
  668. </mark-expected-failures>
  669. </library>
  670. <!-- logic -->
  671. <library name="logic">
  672. <test name="tribool_io_test">
  673. <mark-failure>
  674. <toolset name="msvc-stlport"/>
  675. <toolset name="gcc-2.95.3-linux"/>
  676. <toolset name="sunpro-5_3-sunos"/>
  677. <toolset name="tru64cxx65-042"/>
  678. <note author="Douglas Gregor" refid="4"/>
  679. </mark-failure>
  680. </test>
  681. </library>
  682. <!-- MPL -->
  683. <library name="mpl">
  684. <mark-expected-failures>
  685. <test name="as_sequence"/>
  686. <test name="is_sequence"/>
  687. <test name="has_xxx"/>
  688. <test name="no_has_xxx"/>
  689. <test name="single_view"/>
  690. <toolset name="cw-8_3*"/>
  691. <note author="Aleksey Gurtovoy" date="17 Sep 2004">
  692. This failure is caused by a deficient SFINAE implementation; the bug
  693. was fixed in the next major compiler version (CodeWarrior 9.x).
  694. </note>
  695. </mark-expected-failures>
  696. <mark-expected-failures>
  697. <test name="is_sequence"/>
  698. <test name="as_sequence"/>
  699. <test name="has_xxx"/>
  700. <toolset name="borland-5_6_4"/>
  701. <toolset name="gcc-2.95.3*"/>
  702. <note author="Aleksey Gurtovoy" date="17 Sep 2004">
  703. This failure is caused by a deficient SFINAE implementation.
  704. </note>
  705. </mark-expected-failures>
  706. <mark-expected-failures>
  707. <test name="apply"/>
  708. <test name="for_each"/>
  709. <test name="multiset"/>
  710. <test name="zip_view"/>
  711. <toolset name="borland-5_6_4"/>
  712. <note author="Aleksey Gurtovoy" date="17 Sep 2004" refid="26"/>
  713. </mark-expected-failures>
  714. <mark-expected-failures>
  715. <test name="assert"/>
  716. <test name="at"/>
  717. <test name="back"/>
  718. <test name="front"/>
  719. <test name="has_xxx"/>
  720. <test name="multiset"/>
  721. <test name="no_has_xxx"/>
  722. <test name="zip_view"/>
  723. <toolset name="mipspro"/>
  724. <note author="Aleksey Gurtovoy" date="17 Sep 2004" refid="26"/>
  725. </mark-expected-failures>
  726. <mark-expected-failures>
  727. <test name="quote"/>
  728. <toolset name="borland-5_6_4"/>
  729. <toolset name="msvc*"/>
  730. <toolset name="mipspro"/>
  731. <note author="Aleksey Gurtovoy" date="17 Sep 2004">
  732. This failure is caused by a lack of compiler support for template template
  733. parameters.
  734. </note>
  735. </mark-expected-failures>
  736. <mark-expected-failures>
  737. <test name="map"/>
  738. <test name="set"/>
  739. <test name="set_c"/>
  740. <toolset name="borland-5_6_4"/>
  741. <toolset name="gcc-2.95.3*"/>
  742. <toolset name="mipspro"/>
  743. <note author="Aleksey Gurtovoy" date="17 Sep 2004">
  744. This is an advanced functionality that hasn't been ported to the deficient
  745. compilers (yet). Patches are welcome!
  746. </note>
  747. </mark-expected-failures>
  748. <mark-expected-failures>
  749. <test name="map"/>
  750. <toolset name="msvc*"/>
  751. <toolset name="vc7"/>
  752. <note author="Aleksey Gurtovoy" date="17 Sep 2004">
  753. This is an advanced functionality that hasn't been ported to the deficient
  754. compilers (yet). Patches are welcome!
  755. </note>
  756. </mark-expected-failures>
  757. </library>
  758. <!-- multi_array -->
  759. <library name="multi_array">
  760. <mark-unusable>
  761. <toolset name="borland"/>
  762. <toolset name="borland-5_6_4"/>
  763. <toolset name="borland-5_5_1"/>
  764. <note author="Alisdair Meredith" date="30 Jan 2004">
  765. <p>
  766. This library has never worked [on Borland 5.5.1 and 5.6.4], and the only tests
  767. that 'pass' are compile-fail tests failing for the wrong reasons!
  768. </p>
  769. </note>
  770. </mark-unusable>
  771. <mark-unusable>
  772. <toolset name="sunpro-5_3-sunos"/>
  773. <note author="Douglas Gregor" refid="3"/>
  774. </mark-unusable>
  775. <test name="constructors">
  776. <mark-failure>
  777. <toolset name="msvc"/>
  778. <note author="Ronald Garcia" date="13 Jul 2004">
  779. Known error in MSVC. see
  780. <a href="http://boost-consulting.com/boost/libs/multi_index/doc/compiler_specifics.html#msvc_60">
  781. http://boost-consulting.com/boost/libs/multi_index/doc/compiler_specifics.html#msvc_60</a>
  782. for more information.
  783. </note>
  784. </mark-failure>
  785. </test>
  786. <mark-expected-failures>
  787. <test name="assign_to_array"/>
  788. <toolset name="gcc-2.95.3*"/>
  789. <note author="Aleksey Gurtovoy" date="21 Sep 2004" refid="2"/>
  790. </mark-expected-failures>
  791. </library>
  792. <!-- multi_index -->
  793. <library name="multi_index">
  794. <mark-unusable>
  795. <toolset name="borland-5_6_4"/>
  796. <note author="J. L&#243;pez" date="05 Jul 2004" refid="17"/>
  797. </mark-unusable>
  798. <mark-unusable>
  799. <toolset name="gcc-2.95.3-linux"/>
  800. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  801. <note author="J. L&#243;pez" date="09 Jul 2004" refid="17"/>
  802. </mark-unusable>
  803. <mark-unusable>
  804. <toolset name="*como-4_3_3-msvc"/>
  805. <note author="J. L&#243;pez" date="30 Jul 2004">
  806. The VC++ 6.0 backend runs out of internal resources while
  807. trying to process the Comeau output for this library;
  808. Comeau Computing has been asked about a solution.
  809. On the other hand, Comeau 4.3.3 with VC++ 7.0 backend works
  810. fine.
  811. </note>
  812. </mark-unusable>
  813. <mark-unusable>
  814. <toolset name="sunpro-5_3-sunos"/>
  815. <note author="J. L&#243;pez" date="22 Apr 2005" refid="17"/>
  816. </mark-unusable>
  817. <mark-expected-failures>
  818. <test name="test_serialization"/>
  819. <toolset name="msvc-stlport"/>
  820. <note author="J. L&#243;pez" date="10 Jan 2005">
  821. This error shows when using the dynamic version of the STLport
  822. library. The problem is reportedly fixed in STLport 5.0 (in beta
  823. stage as of this writing.)
  824. </note>
  825. </mark-expected-failures>
  826. </library>
  827. <!-- optional -->
  828. <library name="optional">
  829. <mark-expected-failures>
  830. <test name="optional_test_ref"/>
  831. <toolset name="msvc"/>
  832. <toolset name="msvc-stlport"/>
  833. <toolset name="vc7"/>
  834. <note author="Aleksey Gurtovoy" refid="3"/>
  835. </mark-expected-failures>
  836. <mark-expected-failures>
  837. <test name="optional_test_ref_fail1"/>
  838. <toolset name="borland-5_6_4"/>
  839. <note author="Fernando Cacciola" refid="2"/>
  840. </mark-expected-failures>
  841. <mark-expected-failures>
  842. <test name="optional_test_fail3a"/>
  843. <toolset name="gcc-3_3-darwin"/>
  844. <note author="Fernando Cacciola" refid="2"/>
  845. </mark-expected-failures>
  846. <mark-expected-failures>
  847. <test name="optional_test_inplace_fail2"/>
  848. <toolset name="gcc-3_3-darwin"/>
  849. <note author="Fernando Cacciola" refid="2"/>
  850. </mark-expected-failures>
  851. </library>
  852. <!-- serialization -->
  853. <library name="serialization">
  854. <mark-unusable>
  855. <toolset name="acc" />
  856. <toolset name="vacpp" />
  857. <toolset name="mipspro" />
  858. <note author="Robert Ramey" date="13 Jul 2004" refid="9,17,18"/>
  859. </mark-unusable>
  860. <mark-unusable>
  861. <toolset name="gcc-2.95.3-linux"/>
  862. <note author="Robert Ramey" date="12 Feb 05" refid="18,19"/>
  863. </mark-unusable>
  864. <mark-expected-failures>
  865. <test name="*_warchive"/>
  866. <test name="test_codecvt_null"/>
  867. <test name="test_utf8_codecvt"/>
  868. <toolset name="mingw*"/>
  869. <toolset name="gcc-2.95.3-linux"/>
  870. <note author="Robert Ramey" date="12 Feb 05" refid="19"/>
  871. </mark-expected-failures>
  872. <mark-expected-failures>
  873. <test name="test_void_cast*"/>
  874. <toolset name="msvc*"/>
  875. <note author="Robert Ramey" date="20 Sep 2004" refid="16,29"/>
  876. </mark-expected-failures>
  877. <mark-expected-failures>
  878. <test name="*_warchive"/>
  879. <test name="test_codecvt_null"/>
  880. <test name="test_utf8_codecvt"/>
  881. <toolset name="*como-4_3_3*"/>
  882. <note author="Robert Ramey" date="12 Feb 05" refid="5"/>
  883. </mark-expected-failures>
  884. <mark-expected-failures>
  885. <test name="test_demo_portable_archive_dll"/>
  886. <toolset name="vc*"/>
  887. <toolset name="msvc*"/>
  888. <toolset name="iw*"/>
  889. <note author="Robert Ramey" date="12 Feb 05" refid="2,29"/>
  890. </mark-expected-failures>
  891. <mark-expected-failures>
  892. <test name="test_reset_object_address*"/>
  893. <toolset name="msvc*"/>
  894. <note author="Robert Ramey" date="12 Feb 05" refid="6,29"/>
  895. </mark-expected-failures>
  896. <mark-expected-failures>
  897. <test name="test_array*"/>
  898. <test name="test_demo_fast_archive"/>
  899. <toolset name="borland*"/>
  900. <note author="Robert Ramey" date="12 Feb 05" refid="26">
  901. Borland compilers don't handle templates with array type arguments properly.
  902. </note>
  903. </mark-expected-failures>
  904. <mark-expected-failures>
  905. <test name="test_demo"/>
  906. <test name="test_demo_dll"/>
  907. <test name="test_demo_exception"/>
  908. <test name="test_demo_exception_dll"/>
  909. <test name="test_demo_shared_ptr"/>
  910. <test name="test_demo_xml_save"/>
  911. <test name="test_demo_xml_load"/>
  912. <test name="test_demo_xml_save_dll"/>
  913. <test name="test_demo_xml_load_dll"/>
  914. <toolset name="msvc*"/>
  915. <toolset name="vc7"/>
  916. <note author="Robert Ramey" refid="6"/>
  917. </mark-expected-failures>
  918. <mark-expected-failures>
  919. <test name="test_demo_fast_archive"/>
  920. <toolset name="msvc*"/>
  921. <note author="Robert Ramey" refid="6"/>
  922. </mark-expected-failures>
  923. <mark-expected-failures>
  924. <test name="test_const"/>
  925. <toolset name="msvc*"/>
  926. <toolset name="vc7"/>
  927. <note author="Aleksey Gurtovoy" refid="29"/>
  928. </mark-expected-failures>
  929. <mark-expected-failures>
  930. <test name="test_demo_pimpl"/>
  931. <test name="test_diamond*"/>
  932. <test name="test_mult_archive_types"/>
  933. <toolset name="msvc*"/>
  934. <toolset name="vc7"/>
  935. <note author="Robert Ramey" refid="6">
  936. msvc 6 compiler failure. The facility being tested conflicts the the
  937. compiler in a fundamental way and cannnot be worked around.
  938. </note>
  939. </mark-expected-failures>
  940. <mark-expected-failures>
  941. <test name="test_mi*"/>
  942. <toolset name="msvc*"/>
  943. <note author="Robert Ramey" refid="6">
  944. msvc 6 compiler failure. The facility being tested conflicts the the
  945. compiler in a fundamental way and cannnot be worked around.
  946. </note>
  947. </mark-expected-failures>
  948. <mark-expected-failures>
  949. <test name="*_dll"/>
  950. <toolset name="msvc-stlport"/>
  951. <note author="Robert Ramey">
  952. This failure appears when STLPort is built and used as a DLL with msvc 6.
  953. STLPort suggests that the next version of STLPort(5.0) will include a workaround
  954. for this problem.
  955. </note>
  956. </mark-expected-failures>
  957. <mark-expected-failures>
  958. <test name="*"/>
  959. <toolset name="gcc-2.95.3-stlport*"/>
  960. <note author="Aleksey Gurtovoy">
  961. The library is believed to work in this configuration <i>if compiled against
  962. Spirit 1.6</i>. The latter is not provided by the particular testing
  963. environment these tests have been run in.
  964. </note>
  965. </mark-expected-failures>
  966. <mark-expected-failures>
  967. <test name="test_demo"/>
  968. <test name="test_demo_exception"/>
  969. <test name="test_demo_xml*"/>
  970. <test name="test_shared_ptr*"/>
  971. <test name="test_mi*"/>
  972. <test name="test_non_default_ctor2*"/>
  973. <test name="test_exported*"/>
  974. <test name="test_registered*"/>
  975. <test name="test_unregistered*"/>
  976. <test name="test_shared_ptr*"/>
  977. <toolset name="cw*"/>
  978. <note author="Robert Ramey" refid="29">
  979. All tests that serialize derived pointers currently fail with Metrowerks compilers.
  980. </note>
  981. </mark-expected-failures>
  982. <mark-expected-failures>
  983. <test name="test_no_rtti_*"/>
  984. <test name="test_set_*"/>
  985. <toolset name="borland-5_6_4"/>
  986. <note author="Aleksey Gurtovoy" refid="29"/>
  987. </mark-expected-failures>
  988. <mark-expected-failures>
  989. <test name="test_array_binary_archive"/>
  990. <test name="test_array_text_*"/>
  991. <note author="Aleksey Gurtovoy" refid="29"/>
  992. </mark-expected-failures>
  993. <mark-expected-failures>
  994. <test name="test_demo_fast_archive"/>
  995. <test name="test_no_rtti_*"/>
  996. <toolset name="cw*"/>
  997. <note author="Aleksey Gurtovoy" refid="29"/>
  998. </mark-expected-failures>
  999. <mark-expected-failures>
  1000. <test name="test_smart_cast"/>
  1001. <toolset name="intel-7.1-linux"/>
  1002. <note author="Aleksey Gurtovoy" refid="29"/>
  1003. </mark-expected-failures>
  1004. </library>
  1005. <!-- smart_ptr -->
  1006. <library name="smart_ptr">
  1007. <mark-expected-failures>
  1008. <test name="shared_ptr_assign_fail"/>
  1009. <toolset name="gcc-2.9*"/>
  1010. <toolset name="sunpro-5_3-sunos"/>
  1011. <note refid="32" author="Peter Dimov"/>
  1012. </mark-expected-failures>
  1013. </library>
  1014. <!-- spirit -->
  1015. <library name="spirit">
  1016. <mark-unusable>
  1017. <toolset name="msvc"/>
  1018. <toolset name="msvc-stlport"/>
  1019. <toolset name="borland-5_5_1"/>
  1020. <toolset name="borland-5_6_4"/>
  1021. <toolset name="vc7"/>
  1022. <toolset name="gcc-2.95.3-linux"/>
  1023. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1024. <toolset name="sunpro-5_3-sunos"/>
  1025. <note>
  1026. <p>
  1027. Historically, Spirit supported a lot of compilers, including (to some
  1028. extent) poorly conforming compilers such as VC6. Spirit v1.6.x will be
  1029. the last release that will support older poorly conforming compilers.
  1030. Starting from Spirit v1.8.0, ill conforming compilers will not be
  1031. supported. If you are still using one of these older compilers, you can
  1032. still use Spirit v1.6.x.
  1033. </p>
  1034. <p>
  1035. The reason why Spirit v1.6.x worked on old non-conforming compilers is
  1036. that the authors laboriously took the trouble of searching for
  1037. workarounds to make these compilers happy. The process takes a lot of
  1038. time and energy, especially when one encounters the dreaded ICE or
  1039. "Internal Compiler Error". Sometimes searching for a single workaround
  1040. takes days or even weeks. Sometimes, there are no known workarounds. This
  1041. stifles progress a lot. And, as the library gets more progressive and
  1042. takes on more advanced C++ techniques, the difficulty is escalated to
  1043. even new heights.
  1044. </p>
  1045. <p>
  1046. Spirit v1.6.x will still be supported. Maintenance and bug fixes will
  1047. still be applied. There will still be active development for the back-
  1048. porting of new features introduced in Spirit v1.8.0 (and Spirit 1.9.0)
  1049. to lesser able compilers; hopefully, fueled by contributions from the
  1050. community. For instance, there is already a working AST tree back-port
  1051. for VC6 and VC7 by Peder Holt.
  1052. </p>
  1053. </note>
  1054. </mark-unusable>
  1055. <mark-expected-failures>
  1056. <test name="action_tests*"/>
  1057. <toolset name="iw-7_1-vc6"/>
  1058. <note author="Aleksey Gurtovoy" refid="4"/>
  1059. </mark-expected-failures>
  1060. <mark-expected-failures>
  1061. <test name="ast_calc_tests*"/>
  1062. <test name="closure_tests*"/>
  1063. <test name="multi_pass_compile_tests"/>
  1064. <test name="repeat_ast_tests*"/>
  1065. <toolset name="intel-8.0-linux"/>
  1066. <toolset name="intel-8.1-linux"/>
  1067. <note author="Aleksey Gurtovoy">
  1068. This failure is caused by a compiler bug that manifests itself in the
  1069. particular environment/hardware configuration the test has been run in.
  1070. You may or may not experience this issue in your local setup.
  1071. </note>
  1072. </mark-expected-failures>
  1073. <mark-expected-failures>
  1074. <test name="bug_fixes*"/>
  1075. <test name="chset_tests*"/>
  1076. <test name="epsilon_tests*"/>
  1077. <toolset name="vc-8_0"/>
  1078. <note author="Aleksey Gurtovoy">
  1079. This failure is caused by a compiler bug in version 14.00.40809 that has
  1080. been fixed in the latest development "alpha".
  1081. </note>
  1082. </mark-expected-failures>
  1083. <mark-expected-failures>
  1084. <test name="escape_char_parser_tests*"/>
  1085. <toolset name="intel-7.1-linux"/>
  1086. <toolset name="intel-7.1-stdlib-default-linux"/>
  1087. <note author="Aleksey Gurtovoy" refid="19"/>
  1088. </mark-expected-failures>
  1089. <mark-expected-failures>
  1090. <test name="escape_char_parser_tests*"/>
  1091. <toolset name="iw-7_1-vc6*"/>
  1092. <note author="Aleksey Gurtovoy" refid="28"/>
  1093. </mark-expected-failures>
  1094. <mark-expected-failures>
  1095. <test name="chset_tests*"/>
  1096. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  1097. <note author="Aleksey Gurtovoy" refid="28"/>
  1098. </mark-expected-failures>
  1099. </library>
  1100. <!-- function -->
  1101. <library name="function">
  1102. <mark-unusable>
  1103. <toolset name="sunpro-5_3-sunos"/>
  1104. <note author="Douglas Gregor" refid="3"/>
  1105. </mark-unusable>
  1106. <test name="allocator_test">
  1107. <mark-failure>
  1108. <toolset name="msvc"/>
  1109. <toolset name="vc7"/>
  1110. <note author="B. Dawes" refid="5"/>
  1111. </mark-failure>
  1112. </test>
  1113. <test name="contains_test">
  1114. <mark-failure>
  1115. <toolset name="msvc"/>
  1116. <toolset name="msvc-stlport"/>
  1117. <note refid="3" author="D. Gregor"/>
  1118. </mark-failure>
  1119. </test>
  1120. <test name="function_30">
  1121. <mark-failure>
  1122. <toolset name="vacpp"/>
  1123. <note refid="16" author="D. Gregor"/>
  1124. </mark-failure>
  1125. </test>
  1126. <test name="function_arith_cxx98">
  1127. <mark-failure>
  1128. <toolset name="borland"/>
  1129. <toolset name="borland-5_6_4"/>
  1130. <toolset name="msvc"/>
  1131. <toolset name="vc7"/>
  1132. <note author="B. Dawes" refid="3"/>
  1133. </mark-failure>
  1134. </test>
  1135. <test name="function_ref_cxx98">
  1136. <mark-failure>
  1137. <toolset name="borland"/>
  1138. <toolset name="borland-5_6_4"/>
  1139. <toolset name="msvc"/>
  1140. <toolset name="vc7"/>
  1141. <note author="B. Dawes" refid="3"/>
  1142. </mark-failure>
  1143. </test>
  1144. <test name="lambda_test">
  1145. <mark-failure>
  1146. <toolset name="borland"/>
  1147. <toolset name="borland-5_6_4"/>
  1148. <toolset name="msvc"/>
  1149. <toolset name="vc7"/>
  1150. <note author="B. Dawes" refid="3"/>
  1151. </mark-failure>
  1152. <mark-failure>
  1153. <toolset name="cw-8_3*"/>
  1154. <note author="B. Dawes" refid="2"/>
  1155. </mark-failure>
  1156. </test>
  1157. <test name="lib_function_test">
  1158. <mark-failure>
  1159. <toolset name="borland"/>
  1160. <toolset name="borland-5_6_4"/>
  1161. <toolset name="msvc"/>
  1162. <toolset name="vc7"/>
  1163. <note author="B. Dawes" refid="3"/>
  1164. </mark-failure>
  1165. <mark-failure>
  1166. <toolset name="cw-8_3*"/>
  1167. <note author="B. Dawes" refid="2"/>
  1168. </mark-failure>
  1169. </test>
  1170. <test name="mem_fun_cxx98">
  1171. <mark-failure>
  1172. <toolset name="borland"/>
  1173. <toolset name="borland-5_6_4"/>
  1174. <toolset name="msvc"/>
  1175. <toolset name="vc7"/>
  1176. <note author="B. Dawes" refid="3"/>
  1177. </mark-failure>
  1178. <mark-failure>
  1179. <toolset name="cw-8_3*"/>
  1180. <note author="B. Dawes" refid="2"/>
  1181. </mark-failure>
  1182. </test>
  1183. <test name="std_bind_cxx98">
  1184. <mark-failure>
  1185. <toolset name="borland"/>
  1186. <toolset name="borland-5_6_4"/>
  1187. <toolset name="msvc"/>
  1188. <toolset name="vc7"/>
  1189. <note author="B. Dawes" refid="3"/>
  1190. </mark-failure>
  1191. </test>
  1192. <test name="std_bind_portable">
  1193. <mark-failure>
  1194. <toolset name="msvc"/>
  1195. <note author="B. Dawes" refid="5"/>
  1196. </mark-failure>
  1197. </test>
  1198. <test name="sum_avg_cxx98">
  1199. <mark-failure>
  1200. <toolset name="borland"/>
  1201. <toolset name="borland-5_6_4"/>
  1202. <toolset name="msvc"/>
  1203. <toolset name="vc7"/>
  1204. <note author="B. Dawes" refid="3"/>
  1205. </mark-failure>
  1206. </test>
  1207. </library>
  1208. <!-- iterator -->
  1209. <library name="iterator">
  1210. <test name="interoperable_fail">
  1211. <mark-failure>
  1212. <toolset name="borland"/>
  1213. <toolset name="borland-5_6_4"/>
  1214. <toolset name="msvc"/>
  1215. <toolset name="vc7"/>
  1216. <note author="B. Dawes" refid="2"/>
  1217. </mark-failure>
  1218. <mark-failure>
  1219. <toolset name="gcc"/>
  1220. <note refid="3"/>
  1221. </mark-failure>
  1222. <mark-failure>
  1223. <toolset name="*"/>
  1224. <note author="D. Abrahams">
  1225. This failure is caused by a compiler bug. Templated operators
  1226. that combine different iterators built with iterator_facade or
  1227. iterator_adaptor may be present in an overload set even when those
  1228. iterators are not interoperable. The usual result is that error
  1229. messages generated by illegal use of these operators will be of
  1230. lower quality.
  1231. </note>
  1232. </mark-failure>
  1233. </test>
  1234. <test name="is_convertible_fail" corner-case="yes">
  1235. <mark-failure>
  1236. <toolset name="borland"/>
  1237. <toolset name="borland-5_6_4"/>
  1238. <toolset name="msvc"/>
  1239. <toolset name="vc7"/>
  1240. <note refid="2"/>
  1241. </mark-failure>
  1242. <mark-failure>
  1243. <toolset name="*"/>
  1244. <note author="D. Abrahams">
  1245. This failure is caused by a compiler bug.
  1246. <code>is_convertible&lt;T,U&gt;::value</code> may be true for unrelated
  1247. iterators <code>T</code> and <code>U</code>
  1248. (including many of the Boost specialized adaptors) which use
  1249. <code>enable_if_convertible</code> to restrict the applicability
  1250. of converting constructors, even when <code>T</code> is not
  1251. convertible to <code>U</code> because instantiating the
  1252. conversion will cause a compilation failure.
  1253. </note>
  1254. </mark-failure>
  1255. </test>
  1256. <test name="indirect_iter_member_types" corner-case="yes"/>
  1257. <mark-expected-failures>
  1258. <test name="indirect_iter_member_types"/>
  1259. <test name="pointee"/>
  1260. <toolset name="borland"/>
  1261. <toolset name="borland-5_6_4"/>
  1262. <note author="D. Abrahams">
  1263. This failure is caused by a compiler bug. The
  1264. compiler tends to drop const-ness and as a result
  1265. some indirect_iterators will have pointer and
  1266. reference members of <code>T*</code> and <code>T&amp;</code> that should
  1267. have been <code>T const*</code> and <code>T const&amp;</code>.
  1268. </note>
  1269. </mark-expected-failures>
  1270. <mark-expected-failures>
  1271. <test name="zip_iterator_test"/>
  1272. <toolset name="borland"/>
  1273. <toolset name="borland-5_6_4"/>
  1274. <note author="Aleksey Gurtovoy" date="19 Sep 2004" refid="26"/>
  1275. </mark-expected-failures>
  1276. </library>
  1277. <!-- math -->
  1278. <library name="math">
  1279. <test name="quaternion_mult_incl_test">
  1280. <mark-failure>
  1281. <toolset name="intel-win32"/>
  1282. <note author="B. Dawes" refid="3"/>
  1283. </mark-failure>
  1284. </test>
  1285. </library>
  1286. <!-- numeric/conversion -->
  1287. <library name="numeric/conversion">
  1288. <mark-unusable>
  1289. <toolset name="gcc-2.95.3-linux"/>
  1290. <toolset name="borland-5_6_4"/>
  1291. <note author="Aleksey Gurtovoy" refid="5"/>
  1292. </mark-unusable>
  1293. <mark-expected-failures>
  1294. <test name="udt_support_test"/>
  1295. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1296. <toolset name="intel-7.1-linux"/>
  1297. <toolset name="intel-7.1-stdlib-default-linux"/>
  1298. <toolset name="msvc"/>
  1299. <toolset name="msvc-stlport"/>
  1300. <note author="Aleksey Gurtovoy" refid="2"/>
  1301. </mark-expected-failures>
  1302. <mark-expected-failures>
  1303. <test name="converter_test"/>
  1304. <toolset name="msvc"/>
  1305. <toolset name="msvc-stlport"/>
  1306. <note author="Aleksey Gurtovoy" refid="2"/>
  1307. </mark-expected-failures>
  1308. <mark-expected-failures>
  1309. <test name="numeric_cast_test"/>
  1310. <toolset name="msvc"/>
  1311. <toolset name="msvc-stlport"/>
  1312. <note author="Aleksey Gurtovoy" refid="2"/>
  1313. </mark-expected-failures>
  1314. </library>
  1315. <!-- numeric/interval -->
  1316. <library name="numeric/interval">
  1317. <mark-unusable>
  1318. <toolset name="borland"/>
  1319. <toolset name="borland-5_6_4"/>
  1320. <toolset name="msvc"/>
  1321. <toolset name="msvc-stlport"/>
  1322. <toolset name="vc7"/>
  1323. </mark-unusable>
  1324. <test name="test_float">
  1325. <mark-failure>
  1326. <toolset name="borland-5_5_1"/>
  1327. <toolset name="iw-7_1-vc6"/>
  1328. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  1329. <note author="G. Melquiond">
  1330. This test ensures the inclusion property of interval
  1331. arithmetic is available for built-in floating-point types
  1332. <code>float</code> and <code>double</code>. If the test
  1333. fails, <code>interval&lt;float&gt;</code> and
  1334. <code>interval&lt;double&gt;</code> should not be used
  1335. on this compiler/platform since there will be no
  1336. numerical guarantee.
  1337. </note>
  1338. </mark-failure>
  1339. </test>
  1340. <mark-expected-failures>
  1341. <test name="cmp_exn"/>
  1342. <test name="cmp_set"/>
  1343. <test name="cmp_tribool"/>
  1344. <toolset name="gcc-2.95.3-linux"/>
  1345. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1346. <note author="Aleksey Gurtovoy" refid="2"/>
  1347. </mark-expected-failures>
  1348. <mark-expected-failures>
  1349. <test name="det"/>
  1350. <toolset name="cw-8_3*"/>
  1351. <note author="Aleksey Gurtovoy" refid="2"/>
  1352. </mark-expected-failures>
  1353. </library>
  1354. <!-- numeric/ublas -->
  1355. <library name="numeric/ublas">
  1356. <mark-unusable>
  1357. <toolset name="borland"/>
  1358. <toolset name="borland-5_6_4"/>
  1359. <note author="M.Stevens" refid="17"/>
  1360. </mark-unusable>
  1361. <mark-unusable>
  1362. <toolset name="cw-8_3"/>
  1363. <toolset name="msvc"/>
  1364. <toolset name="msvc-stlport"/>
  1365. <toolset name="vc7"/>
  1366. <toolset name="iw-7_1-vc6"/>
  1367. <toolset name="gcc-2.95.3-linux"/>
  1368. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1369. <note author="M.Stevens" refid="30"/>
  1370. </mark-unusable>
  1371. <test name="test2">
  1372. <mark-failure>
  1373. <toolset name="tru64cxx65-041"/>
  1374. <note author="M.Stevens" refid="6"/>
  1375. </mark-failure>
  1376. </test>
  1377. </library>
  1378. <!-- program_options -->
  1379. <library name="program_options">
  1380. <!-- Mark unusable toolsets -->
  1381. <mark-unusable>
  1382. <toolset name="gcc-2.95.3-linux"/>
  1383. <note>
  1384. The failure is caused by standard library deficiencies
  1385. -- it lacks the basic_string class template and
  1386. the &lt;locale&gt; header.
  1387. </note>
  1388. </mark-unusable>
  1389. <mark-unusable>
  1390. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1391. <note refid="2"/>
  1392. </mark-unusable>
  1393. <!-- Mark expected failures -->
  1394. <test name="unicode_test*">
  1395. <mark-failure>
  1396. <toolset name="iw-7_1-vc6"/>
  1397. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  1398. <toolset name="msvc"/>
  1399. <toolset name="msvc-stlport"/>
  1400. <note>The failures are caused by problems
  1401. with std::locale implementation</note>
  1402. </mark-failure>
  1403. </test>
  1404. <test name="options_description_test_dll">
  1405. <mark-failure>
  1406. <toolset name="msvc"/>
  1407. <toolset name="iw-7_1-vc6"/>
  1408. <note refid="23"/>
  1409. </mark-failure>
  1410. </test>
  1411. <test name="variable_map_test_dll">
  1412. <mark-failure>
  1413. <toolset name="iw-7_1-vc6"/>
  1414. <note refid="23"/>
  1415. </mark-failure>
  1416. </test>
  1417. <test name="*dll">
  1418. <mark-failure>
  1419. <toolset name="cw-8_3*"/>
  1420. <note refid="18"/>
  1421. </mark-failure>
  1422. </test>
  1423. <test name="*dll">
  1424. <mark-failure>
  1425. <toolset name="*como-4_3_3*"/>
  1426. <note refid="24"/>
  1427. </mark-failure>
  1428. </test>
  1429. <mark-expected-failures>
  1430. <test name="variable_map_test"/>
  1431. <test name="variable_map_test_dll"/>
  1432. <toolset name="msvc"/>
  1433. <toolset name="msvc-stlport"/>
  1434. <note>
  1435. The failures are caused by compiler bug: it's not possible to
  1436. explicitly pass template arguments to member template function. The
  1437. failure is serious and makes one of the primary interfaces
  1438. unusable.
  1439. </note>
  1440. </mark-expected-failures>
  1441. <mark-expected-failures>
  1442. <test name="options_description_test_dll"/>
  1443. <test name="parsers_test_dll"/>
  1444. <test name="variable_map_test_dll"/>
  1445. <toolset name="mingw-3*"/>
  1446. <note author="Aleksey Gurtovoy" refid="29"/>
  1447. </mark-expected-failures>
  1448. <mark-expected-failures>
  1449. <test name="unicode_test*"/>
  1450. <toolset name="mingw-3*"/>
  1451. <note refid="19"/>
  1452. </mark-expected-failures>
  1453. </library>
  1454. <!-- python -->
  1455. <library name="python">
  1456. <mark-unusable>
  1457. <toolset name="borland"/>
  1458. <toolset name="borland-5_5_1"/>
  1459. <toolset name="borland-5_6_4"/>
  1460. <note refid="2"/>
  1461. <note refid="17"/>
  1462. </mark-unusable>
  1463. <mark-expected-failures>
  1464. <test name="args"/>
  1465. <test name="auto_ptr"/>
  1466. <test name="builtin_convertors"/>
  1467. <test name="callbacks"/>
  1468. <test name="crossmod_exception"/>
  1469. <test name="data_members"/>
  1470. <test name="enum"/>
  1471. <test name="exception_translator"/>
  1472. <test name="extract"/>
  1473. <test name="implicit"/>
  1474. <test name="iterator"/>
  1475. <test name="list"/>
  1476. <test name="map_indexing_suite"/>
  1477. <test name="object"/>
  1478. <test name="opaque"/>
  1479. <test name="pickle2"/>
  1480. <test name="polymorphism"/>
  1481. <test name="polymorphism2"/>
  1482. <test name="shared_ptr"/>
  1483. <test name="slice"/>
  1484. <test name="test_pointer_adoption"/>
  1485. <test name="try"/>
  1486. <test name="vector_indexing_suite"/>
  1487. <test name="virtual_functions"/>
  1488. <toolset name="gcc-2.95.3-linux"/>
  1489. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1490. <note author="D. Abrahams">
  1491. The problems with GCC 2.x only occur when C++ exceptions are thrown and
  1492. the framework catches them, which happens quite often in the tests.
  1493. So technically GCC 2.x is usable if you're careful.
  1494. </note>
  1495. </mark-expected-failures>
  1496. <mark-expected-failures>
  1497. <test name="args"/>
  1498. <test name="auto_ptr"/>
  1499. <test name="back_reference"/>
  1500. <test name="ben_scott1"/>
  1501. <test name="bienstman1"/>
  1502. <test name="bienstman2"/>
  1503. <test name="bienstman3"/>
  1504. <test name="bienstman4"/>
  1505. <test name="bienstman5"/>
  1506. <test name="callbacks"/>
  1507. <test name="cltree"/>
  1508. <test name="const_argument"/>
  1509. <test name="crossmod_exception_a"/>
  1510. <test name="crossmod_exception_b"/>
  1511. <test name="data_members"/>
  1512. <test name="defaults"/>
  1513. <test name="dict"/>
  1514. <test name="docstring"/>
  1515. <test name="enum"/>
  1516. <test name="exception_translator"/>
  1517. <test name="extract"/>
  1518. <test name="implicit"/>
  1519. <test name="injected"/>
  1520. <test name="input_iterator"/>
  1521. <test name="int_map_indexing_suite"/>
  1522. <test name="iterator"/>
  1523. <test name="keywords"/>
  1524. <test name="list"/>
  1525. <test name="long"/>
  1526. <test name="m1"/>
  1527. <test name="m2"/>
  1528. <test name="map_indexing_suite"/>
  1529. <test name="minimal"/>
  1530. <test name="module_tail"/>
  1531. <test name="multi_arg_constructor"/>
  1532. <test name="nested"/>
  1533. <test name="object"/>
  1534. <test name="opaque"/>
  1535. <test name="operators"/>
  1536. <test name="pickle1"/>
  1537. <test name="pickle2"/>
  1538. <test name="pickle3"/>
  1539. <test name="pickle4"/>
  1540. <test name="polymorphism"/>
  1541. <test name="polymorphism2"/>
  1542. <test name="properties"/>
  1543. <test name="register_ptr"/>
  1544. <test name="return_arg"/>
  1545. <test name="shared_ptr"/>
  1546. <test name="slice"/>
  1547. <test name="staticmethod"/>
  1548. <test name="str"/>
  1549. <test name="test_builtin_converters"/>
  1550. <test name="test_pointer_adoption"/>
  1551. <test name="tuple"/>
  1552. <test name="vector_indexing_suite"/>
  1553. <test name="virtual_functions"/>
  1554. <toolset name="intel-7.1-linux"/>
  1555. <toolset name="intel-8.0-linux"/>
  1556. <note author="Aleksey Gurtovoy">
  1557. The library is <a href="http://article.gmane.org/gmane.comp.lib.boost.devel/110420">known to work</a>
  1558. in this configuration. The failures are due to configuration issues of
  1559. the particular testing environment these tests have been run in. The
  1560. regression runners and library developers are aware of the problem and
  1561. plan to fix it for the next release.
  1562. </note>
  1563. </mark-expected-failures>
  1564. <mark-expected-failures>
  1565. <test name="builtin_converters"/>
  1566. <test name="extract"/>
  1567. <test name="list"/>
  1568. <test name="operators"/>
  1569. <test name="pickle1"/>
  1570. <test name="pickle2"/>
  1571. <test name="pickle3"/>
  1572. <test name="pickle4"/>
  1573. <toolset name="gcc-3.4.2-linux"/>
  1574. <note author="Aleksey Gurtovoy">
  1575. The test is <a href="http://article.gmane.org/gmane.comp.lib.boost.devel/110671">known to work</a>
  1576. in this configuration. The failures are due to configuration issues of
  1577. the particular testing environment these tests have been run in.
  1578. </note>
  1579. </mark-expected-failures>
  1580. </library>
  1581. <!-- random -->
  1582. <library name="random">
  1583. <mark-unusable>
  1584. <toolset name="msvc"/>
  1585. <toolset name="vc7"/>
  1586. <note author="B. Dawes" refid="10"/>
  1587. </mark-unusable>
  1588. <test name="random*">
  1589. <mark-failure>
  1590. <toolset name="intel-win32-8_0"/>
  1591. <note author="S. Slapeta" refid="3"/>
  1592. </mark-failure>
  1593. </test>
  1594. <test name="random_test">
  1595. <mark-failure>
  1596. <toolset name="cw-8_3*"/>
  1597. <note author="B. Dawes" refid="3"/>
  1598. </mark-failure>
  1599. <mark-failure>
  1600. <toolset name="borland"/>
  1601. <toolset name="borland-5_6_4"/>
  1602. <note author="B. Dawes" refid="2"/>
  1603. </mark-failure>
  1604. </test>
  1605. </library>
  1606. <!-- range -->
  1607. <library name="range">
  1608. <mark-unusable>
  1609. <!-- <toolset name="gcc-2.95.3*"/> -->
  1610. <toolset name="mipspro"/>
  1611. <note author="Thorsten Ottosen"/>
  1612. </mark-unusable>
  1613. <mark-expected-failures>
  1614. <test name="array_test"/>
  1615. <toolset name="como-4_3_3*"/>
  1616. <toolset name="borland-5_6_4"/>
  1617. <toolset name="msvc"/>
  1618. <toolset name="msvc-stlport"/>
  1619. <toolset name="vc7"/>
  1620. <note refid="27" author="Thorsten Ottosen"/>
  1621. </mark-expected-failures>
  1622. <mark-expected-failures>
  1623. <test name="iterator_range"/>
  1624. <toolset name="cw-8_3*"/>
  1625. <toolset name="msvc-stlport"/>
  1626. <toolset name="vc7"/>
  1627. <toolset name="tru64cxx65"/>
  1628. <note author="Thorsten Ottosen">
  1629. For most compilers this is due to problems
  1630. with built-in arrays (notably char arrays) and operator==()
  1631. and operator!=() for iterator_range. Thus, not using built-in arrays
  1632. fixes the problem.
  1633. </note>
  1634. </mark-expected-failures>
  1635. <mark-expected-failures>
  1636. <test name="reversible_range_test"/>
  1637. <toolset name="vc7"/>
  1638. <toolset name="tru64cxx65"/>
  1639. <note author="Thorsten Ottosen">
  1640. This test probably fails because it uses built-in arrays. So do expect these
  1641. functions to work in normal code.
  1642. </note>
  1643. </mark-expected-failures>
  1644. <mark-expected-failures>
  1645. <test name="string_test"/>
  1646. <toolset name="vc7"/>
  1647. <toolset name="tru64cxx65"/>
  1648. <note author="Thorsten Ottosen">
  1649. The string functionality is expected to work if
  1650. the user employs std::string.
  1651. </note>
  1652. </mark-expected-failures>
  1653. <mark-expected-failures>
  1654. <test name="sub_range"/>
  1655. <toolset name="vc-8_0"/>
  1656. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  1657. <toolset name="msvc-stlport"/>
  1658. <toolset name="vc7"/>
  1659. <toolset name="cw-8_3*"/>
  1660. <toolset name="tru64cxx65"/>
  1661. <note refid="6" author="Thorsten Ottosen">
  1662. For most compilers this is due to problems
  1663. with built-in arrays (notably char arrays) and operator==()
  1664. and operator!=() for iterator_range. Thus, not using built-in arrays
  1665. fixes the problem.
  1666. </note>
  1667. </mark-expected-failures>
  1668. </library>
  1669. <!-- regex -->
  1670. <library name="regex">
  1671. <test name="regex_token_iterator_eg_2">
  1672. <mark-failure>
  1673. <toolset name="msvc"/>
  1674. <note author="J. Maddock"/>
  1675. </mark-failure>
  1676. </test>
  1677. <test name="posix_api_check">
  1678. <mark-failure>
  1679. <toolset name="como-4_3_3-vc7*"/>
  1680. <note author="J. Maddock"/>
  1681. </mark-failure>
  1682. </test>
  1683. <test name="*_dll">
  1684. <mark-failure>
  1685. <toolset name="*como-4_3_3*"/>
  1686. <note author="J. Maddock"/>
  1687. </mark-failure>
  1688. </test>
  1689. <test name="concept_check">
  1690. <mark-failure>
  1691. <toolset name="vc-8_0"/>
  1692. <toolset name="sunpro-5_3-sunos"/>
  1693. <toolset name="tru64cxx65-042"/>
  1694. <note author="John Maddock" refid="2"/>
  1695. </mark-failure>
  1696. </test>
  1697. <mark-expected-failures>
  1698. <test name="regex_regress"/>
  1699. <test name="regex_regress_dll"/>
  1700. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  1701. <note author="John Maddock" refid="29"/>
  1702. </mark-expected-failures>
  1703. <mark-expected-failures>
  1704. <test name="unicode_iterator_test"/>
  1705. <toolset name="borland-5_6_4"/>
  1706. <note author="John Maddock" refid="6"/>
  1707. </mark-expected-failures>
  1708. </library>
  1709. <!-- signals -->
  1710. <library name="signals">
  1711. <mark-unusable>
  1712. <toolset name="sunpro-5_3-sunos"/>
  1713. </mark-unusable>
  1714. <test name="dead_slot_test">
  1715. <mark-failure>
  1716. <toolset name="*como-4_3_3*"/>
  1717. <note refid="3" author="D. Gregor"/>
  1718. </mark-failure>
  1719. </test>
  1720. <test name="signal_test">
  1721. <mark-failure>
  1722. <toolset name="cw-8_3*"/>
  1723. <note author="B. Dawes" refid="2"/>
  1724. </mark-failure>
  1725. <mark-failure>
  1726. <toolset name="borland"/>
  1727. <toolset name="borland-5_6_4"/>
  1728. <toolset name="msvc"/>
  1729. <toolset name="vc7"/>
  1730. <note author="B. Dawes" refid="3"/>
  1731. </mark-failure>
  1732. </test>
  1733. <test name="trackable_test">
  1734. <mark-failure>
  1735. <toolset name="*como-4_3_3*"/>
  1736. <note refid="3" author="D. Gregor"/>
  1737. </mark-failure>
  1738. </test>
  1739. </library>
  1740. <!-- static_assert -->
  1741. <library name="static_assert">
  1742. <test name="static_assert_test_fail_8">
  1743. <mark-failure>
  1744. <toolset name="cw-8_3*"/>
  1745. <note author="B. Dawes" refid="3"/>
  1746. </mark-failure>
  1747. </test>
  1748. <test name="static_assert_example_2">
  1749. <mark-failure>
  1750. <toolset name="sunpro-5_3-sunos"/>
  1751. <note author="J. Maddock" refid="4"/>
  1752. </mark-failure>
  1753. </test>
  1754. </library>
  1755. <!-- test -->
  1756. <library name="test">
  1757. <mark-expected-failures>
  1758. <test name="custom_exception_test"/>
  1759. <toolset name="msvc*"/>
  1760. <note author="Gennadiy Rozental" refid="2"/>
  1761. </mark-expected-failures>
  1762. <mark-expected-failures>
  1763. <test name="errors_handling_test"/>
  1764. <toolset name="*como-4_3_3*"/>
  1765. <note author="B. Dawes" refid="3"/>
  1766. </mark-expected-failures>
  1767. <mark-expected-failures>
  1768. <test name="token_iterator_test"/>
  1769. <toolset name="msvc-stlport"/>
  1770. <note refid="3"/>
  1771. </mark-expected-failures>
  1772. <mark-expected-failures reason="?">
  1773. <test name="token_iterator_test"/>
  1774. <toolset name="iw-7_1-vc6"/>
  1775. <toolset name="msvc"/>
  1776. <toolset name="gcc-3.4.2-linux"/>
  1777. <note refid="29"/>
  1778. </mark-expected-failures>
  1779. <mark-expected-failures reason="?">
  1780. <test name="basic_cstring_test"/>
  1781. <toolset name="gcc-2.95.3-linux"/>
  1782. <note refid="29"/>
  1783. </mark-expected-failures>
  1784. </library>
  1785. <!-- thread -->
  1786. <library name="thread">
  1787. <mark-unusable>
  1788. <toolset name="*como-4_3_3*"/>
  1789. <note author="B. Dawes" refid="10"/>
  1790. </mark-unusable>
  1791. <test name="test_mutex">
  1792. <mark-failure>
  1793. <toolset name="vc7"/>
  1794. <note author="B. Dawes" refid="0"/>
  1795. <note author="B. Dawes" refid="6"/>
  1796. </mark-failure>
  1797. </test>
  1798. <test name="test_tss_lib">
  1799. <mark-failure>
  1800. <toolset name="mingw*"/>
  1801. <toolset name="borland-5_6_4"/>
  1802. <toolset name="cw-8_3*"/>
  1803. <toolset name="cw-9_3"/>
  1804. <toolset name="vc7"/>
  1805. <note author="Aleksey Gurtovoy" date="19 Sep 2004">
  1806. This functionality has not been implemented yet. The library
  1807. developers plan to implement it for the next release.
  1808. </note>
  1809. </mark-failure>
  1810. </test>
  1811. <mark-expected-failures>
  1812. <test name="*_lib"/>
  1813. <toolset name="intel-8.0-linux*"/>
  1814. <note author="Aleksey Gurtovoy">
  1815. This failure is caused by a conflict between the compiler
  1816. and the testing environment: the tests are run on a platform with
  1817. <i>too recent</i> version of glibc, which is not currently
  1818. supported by the compiler vendor (Intel).
  1819. If you are having the same problem and <i>really</i> want to make
  1820. things work, renaming <code>strol</code> symbol in the
  1821. compiler's static runtime library (<code>libcprts.a</code>) to
  1822. something else is known to resolve the issue.
  1823. </note>
  1824. </mark-expected-failures>
  1825. <mark-expected-failures>
  1826. <test name="test_barrier_lib"/>
  1827. <toolset name="vc-8_0"/>
  1828. <note author="Aleksey Gurtovoy" refid="6"/>
  1829. </mark-expected-failures>
  1830. <mark-expected-failures>
  1831. <test name="test_thread"/>
  1832. <toolset name="vc-7_1"/>
  1833. <note author="Aleksey Gurtovoy" refid="6"/>
  1834. </mark-expected-failures>
  1835. <mark-expected-failures reason="?">
  1836. <test name="*_lib"/>
  1837. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1838. <note author="Aleksey Gurtovoy" refid="29"/>
  1839. </mark-expected-failures>
  1840. </library>
  1841. <!-- tuple -->
  1842. <library name="tuple">
  1843. <mark-unusable>
  1844. <toolset name="sunpro-5_3-sunos"/>
  1845. </mark-unusable>
  1846. <test name="io_test">
  1847. <toolset name="intel-win32"/>
  1848. <note author="B. Dawes" refid="3"/>
  1849. </test>
  1850. </library>
  1851. <!-- type_traits -->
  1852. <library name="type_traits">
  1853. <mark-expected-failures>
  1854. <test name="function_traits_test"/>
  1855. <test name="remove_bounds_test"/>
  1856. <test name="remove_const_test"/>
  1857. <test name="remove_cv_test"/>
  1858. <test name="remove_pointer_test"/>
  1859. <test name="remove_reference_test"/>
  1860. <test name="remove_volatile_test"/>
  1861. <test name="decay_test"/>
  1862. <test name="extent_test"/>
  1863. <test name="remove_extent_test"/>
  1864. <test name="remove_all_extents_test"/>
  1865. <test name="rank_test"/>
  1866. <test name="is_unsigned_test"/>
  1867. <toolset name="msvc"/>
  1868. <toolset name="msvc-stlport"/>
  1869. <toolset name="vc7"/>
  1870. <note author="Aleksey Gurtovoy">
  1871. This failure is caused by the lack of compiler support for class template
  1872. partial specialization. A limited subset of the tested functionality is
  1873. available on the compiler through a user-side workaround (see
  1874. <a href="http://www.boost.org/libs/type_traits/index.html#transformations">
  1875. http://www.boost.org/libs/type_traits/index.html#transformations</a> for
  1876. details).
  1877. </note>
  1878. </mark-expected-failures>
  1879. <mark-expected-failures>
  1880. <test name="tricky_incomplete_type_test"/>
  1881. <test name="decay_test"/>
  1882. <test name="extent_test"/>
  1883. <test name="is_base_of_test"/>
  1884. <test name="rank_test"/>
  1885. <test name="remove_all_extents_test"/>
  1886. <test name="remove_extent_test"/>
  1887. <test name="tricky_function_type_test"/>
  1888. <toolset name="borland-5_6_4"/>
  1889. <note author="John Maddock" refid="2"/>
  1890. </mark-expected-failures>
  1891. <test name="tricky_is_enum_test">
  1892. <mark-failure>
  1893. <toolset name="borland-5_6_4"/>
  1894. <toolset name="msvc"/>
  1895. <toolset name="msvc-stlport"/>
  1896. </mark-failure>
  1897. </test>
  1898. <test name="tricky_incomplete_type_test">
  1899. <mark-failure>
  1900. <toolset name="iw-7_1*"/>
  1901. <note author="John Maddock" refid="2"/>
  1902. </mark-failure>
  1903. </test>
  1904. <test name="is_abstract_test">
  1905. <mark-failure>
  1906. <toolset name="borland-5_6_4"/>
  1907. <toolset name="cw-8_3*"/>
  1908. <toolset name="cw-9_3*"/>
  1909. <toolset name="msvc"/>
  1910. <toolset name="msvc-stlport"/>
  1911. <toolset name="vc7"/>
  1912. <toolset name="mingw-3_3*"/>
  1913. <toolset name="gcc-2*"/>
  1914. <toolset name="gcc-3.2*"/>
  1915. <toolset name="gcc-3.3*"/>
  1916. <toolset name="sunpro-5_3-sunos"/>
  1917. <toolset name="tru64cxx65-042"/>
  1918. <toolset name="darwin"/>
  1919. <toolset name="mingw"/>
  1920. <note author="Aleksey Gurtovoy">
  1921. This functionality is available only on compilers that implement C++ Core Language
  1922. <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#337">Defect Report 337</a>.
  1923. </note>
  1924. </mark-failure>
  1925. </test>
  1926. <mark-expected-failures>
  1927. <test name="decay_test"/>
  1928. <test name="extent_test"/>
  1929. <test name="has_nothrow_assign_test"/>
  1930. <test name="has_nothrow_constr_test"/>
  1931. <test name="has_nothrow_copy_test"/>
  1932. <test name="has_trivial_assign_test"/>
  1933. <test name="has_trivial_constr_test"/>
  1934. <test name="has_trivial_copy_test"/>
  1935. <test name="has_trivial_destructor_test"/>
  1936. <test name="is_array_test"/>
  1937. <test name="is_base_and_derived_test"/>
  1938. <test name="is_base_of_test"/>
  1939. <test name="is_class_test"/>
  1940. <test name="is_convertible_test"/>
  1941. <test name="is_object_test"/>
  1942. <test name="is_pod_test"/>
  1943. <test name="is_polymorphic_test"/>
  1944. <test name="rank_test"/>
  1945. <test name="remove_all_extents_test"/>
  1946. <test name="remove_bounds_test"/>
  1947. <test name="remove_extent_test"/>
  1948. <toolset name="sunpro-5_3-sunos"/>
  1949. <note author="John Maddock">
  1950. The Type Traits library is broken when used with Sunpro-5.3 and the
  1951. argument to the template is an array or function type. Most other argument types
  1952. do work as expected: in other words the functionality is limited
  1953. with this compiler, but not so much as to render the library unuseable.
  1954. </note>
  1955. </mark-expected-failures>
  1956. <mark-expected-failures>
  1957. <test name="is_empty_test"/>
  1958. <test name="is_function_test"/>
  1959. <test name="is_member_func_test"/>
  1960. <test name="is_member_obj_test"/>
  1961. <test name="is_reference_test"/>
  1962. <test name="tricky_function_type_test"/>
  1963. <test name="tricky_incomplete_type_test"/>
  1964. <test name="tricky_is_enum_test"/>
  1965. <toolset name="sunpro-5_3-sunos"/>
  1966. <note author="John Maddock" refid="2"/>
  1967. </mark-expected-failures>
  1968. <mark-expected-failures>
  1969. <test name="tricky_function_type_test"/>
  1970. <test name="is_convertible_test"/>
  1971. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1972. <toolset name="gcc-2.95.3-linux"/>
  1973. <note author="John Maddock" refid="2"/>
  1974. </mark-expected-failures>
  1975. <mark-expected-failures>
  1976. <test name="aligned_storage_test"/>
  1977. <toolset name="cw-8_3"/>
  1978. <note author="John Maddock">
  1979. Older versions of MWCW incorrectly align pointers to member functions
  1980. (they use 12-byte boundaries, rather than a power-of-2 boundary),
  1981. leading to alignment_of / aligned_storage
  1982. to fail with these types on this compiler.
  1983. </note>
  1984. </mark-expected-failures>
  1985. </library>
  1986. <!-- utility/enable_if -->
  1987. <library name="utility/enable_if">
  1988. <mark-unusable>
  1989. <toolset name="borland"/>
  1990. <toolset name="borland-5_6_4"/>
  1991. <toolset name="cw-8_3*"/>
  1992. <toolset name="msvc"/>
  1993. <toolset name="msvc-stlport"/>
  1994. <toolset name="vc7"/>
  1995. <note refid="3"/>
  1996. </mark-unusable>
  1997. </library>
  1998. <!-- utility -->
  1999. <library name="utility">
  2000. <test name="addressof_test">
  2001. <mark-failure>
  2002. <toolset name="sunpro-5_3-sunos"/>
  2003. <note author="D. Gregor" refid="3"/>
  2004. </mark-failure>
  2005. </test>
  2006. <test name="fun_out_iter_example">
  2007. <mark-failure>
  2008. <toolset name="como-win32"/>
  2009. <note author="B. Dawes" refid="4"/>
  2010. </mark-failure>
  2011. </test>
  2012. <test name="result_of_test">
  2013. <mark-failure>
  2014. <toolset name="borland-5*"/>
  2015. <toolset name="cw-8_3*"/>
  2016. <toolset name="msvc"/>
  2017. <toolset name="msvc-stlport"/>
  2018. <toolset name="vc7"/>
  2019. <toolset name="gcc-2.95.3*"/>
  2020. <toolset name="sunpro-5_3-sunos"/>
  2021. <note refid="3" author="D. Gregor"/>
  2022. </mark-failure>
  2023. </test>
  2024. <mark-expected-failures>
  2025. <test name="value_init_test"/>
  2026. <toolset name="msvc*"/>
  2027. <toolset name="vc7"/>
  2028. <note author="Aleksey Gurtovoy">
  2029. This failure is caused by a compiler bug (default-constructed scalar
  2030. types are not zero-initialized) that has been fixed in the latest
  2031. versions of the compiler (VC 7.1 and greater).
  2032. </note>
  2033. </mark-expected-failures>
  2034. </library>
  2035. <!-- variant -->
  2036. <library name="variant">
  2037. <mark-unusable>
  2038. <toolset name="mipspro"/>
  2039. <toolset name="sunpro-5_3-sunos"/>
  2040. <note refid="2"/>
  2041. </mark-unusable>
  2042. <test name="recursive_variant_test">
  2043. <mark-failure>
  2044. <toolset name="como-win32"/>
  2045. <toolset name="msvc"/>
  2046. <toolset name="msvc-stlport"/>
  2047. <toolset name="vc7"/>
  2048. <note refid="3"/>
  2049. </mark-failure>
  2050. </test>
  2051. <mark-expected-failures>
  2052. <test name="recursive_variant_test"/>
  2053. <test name="variant_test1"/>
  2054. <test name="variant_test5"/>
  2055. <test name="variant_visit_test"/>
  2056. <toolset name="borland"/>
  2057. <toolset name="borland-5_6_4"/>
  2058. <note author="Aleksey Gurtovoy" refid="3"/>
  2059. </mark-expected-failures>
  2060. <test name="variant_reference_test">
  2061. <mark-failure>
  2062. <toolset name="cw-8_3*"/>
  2063. <toolset name="msvc"/>
  2064. <toolset name="msvc-stlport"/>
  2065. <toolset name="vc7"/>
  2066. <note refid="3"/>
  2067. </mark-failure>
  2068. <mark-failure>
  2069. <toolset name="intel-win32"/>
  2070. <toolset name="iw-7_1*"/>
  2071. <toolset name="intel-7.1*"/>
  2072. <note refid="2"/>
  2073. </mark-failure>
  2074. </test>
  2075. </library>
  2076. <!-- wave -->
  2077. <library name="wave">
  2078. <mark-unusable>
  2079. <toolset name="msvc"/>
  2080. <toolset name="sunpro-5_3-sunos"/>
  2081. <toolset name="msvc-stlport"/>
  2082. <toolset name="borland-5_5_1"/>
  2083. <toolset name="borland-5_6_4"/>
  2084. <toolset name="gcc-2.95.3-linux"/>
  2085. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  2086. <note refid="29"/>
  2087. </mark-unusable>
  2088. <mark-unusable>
  2089. <toolset name="vc7"/>
  2090. <note>
  2091. This toolset isn't supported because of the used Spirit V1.8.x, which in turn is
  2092. not usable with this toolset.
  2093. </note>
  2094. </mark-unusable>
  2095. <mark-unusable>
  2096. <toolset name="intel-8.1-linux"/>
  2097. <note refid="26"/>
  2098. </mark-unusable>
  2099. </library>
  2100. <!-- /////////////// Standard note definitions /////////////// -->
  2101. <note id="0">
  2102. This test fails only intermittently.
  2103. </note>
  2104. <note id="1">
  2105. The failure is caused by a problem in Boost code. The Boost developers is aware of
  2106. the problem and plan to fix it.
  2107. </note>
  2108. <note id="2">
  2109. The failure is caused by a compiler bug.
  2110. </note>
  2111. <note id="3">
  2112. The failure is caused by a compiler bug, which has been reported to the compiler
  2113. supplier (or is already known to them).
  2114. </note>
  2115. <note id="4">
  2116. The failure is caused by a standard library bug.
  2117. </note>
  2118. <note id="5">
  2119. The failure is caused by a standard library bug, which has been reported to the
  2120. standard library supplier (or is already known to them).
  2121. </note>
  2122. <note id="6">
  2123. The failure is probably caused by the test code, harness, or configuration. Thus
  2124. it may not affect users of the library.
  2125. </note>
  2126. <note id="9">
  2127. The failure is serious and likely to prevent all use of this Boost library with this compiler.
  2128. </note>
  2129. <note id="10">
  2130. The failure is serious and likely to prevent all use of this Boost library with this
  2131. compiler. The failure is caused by a compiler bug, which has been reported to the compiler
  2132. supplier (or is already known to them).
  2133. </note>
  2134. <note id="14">
  2135. The failure is caused by a platform API bug.
  2136. </note>
  2137. <note id="15">
  2138. The failure is caused by a platform API bug, which has been reported to the platform API
  2139. supplier (or is already known to them).
  2140. </note>
  2141. <note id="16">
  2142. The failure is not serious and will not affect most users. The library degrades gracefully.
  2143. </note>
  2144. <note id="17">
  2145. This compiler's bugs are not supported by the library.
  2146. </note>
  2147. <note id="18">
  2148. Locales missing or adequately supported by this compiler.
  2149. </note>
  2150. <note id="19">
  2151. Missing or inadequate wchar/wstring/wstream support for this compiler.
  2152. </note>
  2153. <note id="20">
  2154. No std iterator traits for this compiler.
  2155. </note>
  2156. <note id="21">
  2157. Library has limited input/output support due to compiler inadequacies.
  2158. </note>
  2159. <note id="22">
  2160. No high precision clock for this platform.
  2161. </note>
  2162. <note id="23">
  2163. A bug in standard library prevents passing std::set from DLL to
  2164. application. A fixed &lt;tree&gt; header is available from
  2165. http://www.dinkumware.com/vc_fixes.html.
  2166. </note>
  2167. <note id="24">
  2168. Although the documentation from the Comeau website would make it appear
  2169. that windows DLL's are supported using the --windows option, after some
  2170. experimentation we have been unsuccessful in making dll configurations
  2171. work correctly.
  2172. </note>
  2173. <note id="25">
  2174. The failure is caused by a runtime limitation. Locale support is only
  2175. available with the static linked variant of the runtime. Generally
  2176. the dynamic linked variant is required when building dynamic modules,
  2177. DLL, <code>so</code>, etc.
  2178. </note>
  2179. <note id="26">
  2180. This failure is caused by a compiler bug with no known workaround.
  2181. Patches are welcome!
  2182. </note>
  2183. <note id="27" >
  2184. This failure is caused by bugs in the standard library implementation and/or
  2185. bugs in the compiler.
  2186. </note>
  2187. <note id="28">
  2188. Unresearched failure, please contact library developers for more
  2189. information about possible causes.
  2190. </note>
  2191. <note id="29">
  2192. The test fails due to unresearched issues. The library
  2193. developers are aware of this failure, but need help with
  2194. investigating/addressing it for future releases.
  2195. </note>
  2196. <note id="30">
  2197. The support for this deficient compiler will be dropped starting
  2198. from Boost 1.33.0 release. Please use one of the previous Boost
  2199. releases if you need the library to work on this compiler.
  2200. </note>
  2201. <note id="31">
  2202. This failure is caused by compiler bugs or limitations. Some advanced
  2203. or esoteric library features may be unavailable or only partially available.
  2204. This does not impact most common uses of the library.
  2205. </note>
  2206. <note id="32">
  2207. This failure is caused by a compiler bug. Certain code constructs that should
  2208. fail compilation are accepted by the compiler. This can mask some programming
  2209. errors, but does not impact the usability of the library.
  2210. </note>
  2211. </explicit-failures-markup>
粤ICP备19079148号