explicit-failures-markup.xml 111 KB

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