explicit-failures-markup.xml 109 KB

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