explicit-failures-markup.xml 99 KB

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