explicit-failures-markup.xml 166 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218
  1. <explicit-failures-markup
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="http://cvs.sourceforge.net/viewcvs.py/*checkout*/boost/boost/status/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
  8. file:
  9. - http://syseng.nist.gov/b2bTestbed/projects/xmlvalidation/instance_validation.html
  10. - http://xmlvalidation.com/
  11. With both tools you need to provide both the explicit-failures-markup.xml
  12. file as the XML document and the explicit-failures.xsd as the schema
  13. document. Use the browse buttons to select them from your local hard
  14. drive.
  15. -->
  16. <!-- /////////////// Toolsets /////////////// -->
  17. <mark-toolset name="borland-5_6_4" status="required"/>
  18. <mark-toolset name="cw-9_4" status="required"/>
  19. <mark-toolset name="cw-8_3" status="required"/>
  20. <mark-toolset name="cw-9_5-darwin" status="required"/>
  21. <mark-toolset name="msvc" status="required"/>
  22. <mark-toolset name="msvc-stlport" status="required"/>
  23. <mark-toolset name="vc7" status="required"/>
  24. <mark-toolset name="vc-6_5" status="required"/>
  25. <mark-toolset name="vc-6_5-stlport" status="required"/>
  26. <mark-toolset name="vc-7_0" status="required"/>
  27. <mark-toolset name="vc-7_1" status="required"/>
  28. <mark-toolset name="mingw-3_4_2" status="required"/>
  29. <mark-toolset name="gcc-2.95.3-linux" status="required"/>
  30. <mark-toolset name="gcc-2.95.3-stlport-4.5.3-linux" status="required"/>
  31. <mark-toolset name="gcc-2.95.3-stlport-4.6.2-linux" status="required"/>
  32. <mark-toolset name="gcc-3.2.3-linux" status="required"/>
  33. <mark-toolset name="gcc-3.3.6-linux" status="required"/>
  34. <mark-toolset name="gcc-3.4.4-linux" status="required"/>
  35. <mark-toolset name="gcc-3.4.5-linux" status="required"/>
  36. <mark-toolset name="gcc-4.0.0-linux" status="required"/>
  37. <mark-toolset name="gcc-4.0.1-linux" status="required"/>
  38. <mark-toolset name="gcc-4.0.2-linux" status="required"/>
  39. <mark-toolset name="gcc-3_3-darwin" status="required"/>
  40. <mark-toolset name="gcc-4_0-darwin" status="required"/>
  41. <mark-toolset name="gcc-3.4.3_sunos" status="required"/>
  42. <mark-toolset name="intel-win32-8_1" status="required"/>
  43. <mark-toolset name="intel-win32-9_0" status="required"/>
  44. <mark-toolset name="intel-8.1-linux" status="required"/>
  45. <mark-toolset name="intel-9.0-linux" status="required"/>
  46. <mark-toolset name="tru64cxx71-006" status="required"/>
  47. <mark-toolset name="qcc-3.3.5-cpp" status="required"/>
  48. <mark-toolset name="qcc-3.3.5-gpp" status="required"/>
  49. <!-- /////////////// Libraries /////////////// -->
  50. <!-- minmax -->
  51. <library name="algorithm/minmax">
  52. <mark-unusable>
  53. <toolset name="sunpro-5_3-sunos"/>
  54. </mark-unusable>
  55. </library>
  56. <!-- string_algo -->
  57. <library name="algorithm/string">
  58. <mark-unusable>
  59. <toolset name="borland"/>
  60. <toolset name="msvc"/>
  61. <toolset name="vc-6_5*"/>
  62. <toolset name="iw-7_1-vc6"/>
  63. <toolset name="gcc-2.95.3-linux"/>
  64. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  65. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  66. <toolset name="mipspro"/>
  67. <toolset name="sunpro-5_3-sunos"/>
  68. <note author="P.Droba">
  69. The compiler does not support features that are essential for the library.
  70. </note>
  71. </mark-unusable>
  72. </library>
  73. <!-- any -->
  74. <library name="any">
  75. <test name="any_to_ref_test">
  76. <mark-failure>
  77. <toolset name="msvc"/>
  78. <toolset name="vc-6_5*"/>
  79. <note author="Vladimir Prus">
  80. The test fail with ICE, but the exact reason for ICE is not
  81. known. A minimal example of casting any to reference type
  82. seem to work. Anyone interested in using this functionality
  83. with msvc is suggested to do additional testing.
  84. </note>
  85. </mark-failure>
  86. </test>
  87. </library>
  88. <!-- array -->
  89. <library name="array">
  90. <test name="array3">
  91. <mark-failure>
  92. <toolset name="borland"/>
  93. <toolset name="borland-5_6_4"/>
  94. <toolset name="msvc"/>
  95. <toolset name="vc-6_5"/>
  96. <toolset name="vc-7_0"/>
  97. <note refid="3"/>
  98. </mark-failure>
  99. <mark-failure>
  100. <toolset name="sunpro-5_3-sunos"/>
  101. <note refid="4"/>
  102. </mark-failure>
  103. </test>
  104. <test name="array4">
  105. <mark-failure>
  106. <toolset name="borland"/>
  107. <toolset name="borland-5_6_4"/>
  108. <toolset name="msvc"/>
  109. <toolset name="vc-6_5"/>
  110. <toolset name="vc-7_0"/>
  111. <note refid="3"/>
  112. </mark-failure>
  113. </test>
  114. </library>
  115. <!-- assign -->
  116. <library name="assign">
  117. <mark-unusable>
  118. <toolset name="dmc-8_43-stlport-4_5_3"/>
  119. </mark-unusable>
  120. <mark-expected-failures>
  121. <test name="array"/>
  122. <toolset name="msvc-stlport"/>
  123. <toolset name="vc-6_5-stlport"/>
  124. <toolset name="vc-7_0"/>
  125. <note author="Thorsten Ottosen" >
  126. The test would (most likely) compile and run properly if the workaround
  127. syntax .to_container( c ) was applied to all list_of() expressions.
  128. </note>
  129. </mark-expected-failures>
  130. <mark-expected-failures>
  131. <test name="email_example"/>
  132. <toolset name="gcc-2.95.3*"/>
  133. <note refid="27" author="Thorsten Ottosen"/>
  134. </mark-expected-failures>
  135. <mark-expected-failures>
  136. <test name="list_inserter"/>
  137. <toolset name="vc-7_0"/>
  138. <toolset name="sunpro-5_3-sunos"/>
  139. <toolset name="tru64cxx65*"/>
  140. <toolset name="intel-win32"/>
  141. <note refid="6" author="Thorsten Ottosen"/>
  142. </mark-expected-failures>
  143. <mark-expected-failures>
  144. <test name="list_inserter"/>
  145. <toolset name="gcc-2.95.3*"/>
  146. <note author="Thorsten Ottosen">
  147. This test could probably be made to work if somebody with knowledge
  148. about the compilers would submit a patch.
  149. </note>
  150. </mark-expected-failures>
  151. <mark-expected-failures>
  152. <test name="list_of"/>
  153. <toolset name="sunpro-5_3-sunos"/>
  154. <toolset name="tru64cxx65*"/>
  155. <toolset name="borland-5*"/>
  156. <toolset name="msvc"/>
  157. <toolset name="vc-6_5*"/>
  158. <toolset name="vc-7_0"/>
  159. <note author="Thorsten Ottosen" >
  160. The test would (most likely) compile and run properly if the workaround
  161. syntax .to_container( c ) was applied to all list_of() expressions.
  162. </note>
  163. </mark-expected-failures>
  164. <mark-expected-failures>
  165. <test name="list_of_workaround"/>
  166. <toolset name="sunpro-5_3-sunos"/>
  167. <note author="Thorsten Ottosen" >
  168. The test could probably be made to work if somebody submitted a patch.
  169. </note>
  170. </mark-expected-failures>
  171. <mark-expected-failures>
  172. <test name="multi_index_container"/>
  173. <toolset name="sunpro-5_3-sunos"/>
  174. <toolset name="tru64cxx65*"/>
  175. <toolset name="borland-5*"/>
  176. <toolset name="gcc-2.95.3*"/>
  177. <note refid="27" author="Thorsten Ottosen"/>
  178. </mark-expected-failures>
  179. <mark-expected-failures>
  180. <test name="multi_index_container"/>
  181. <toolset name="msvc"/>
  182. <toolset name="vc-6_5*"/>
  183. <toolset name="vc-7_0"/>
  184. <toolset name="mipspro"/>
  185. <toolset name="tru64cxx65"/>
  186. <note author="Thorsten Ottosen" >
  187. The test would (most likely) compile and run properly if the workaround
  188. syntax .to_container( c ) was applied to all list_of() expressions.
  189. </note>
  190. </mark-expected-failures>
  191. <mark-expected-failures>
  192. <test name="my_vector_example"/>
  193. <toolset name="gcc-2.95.3*"/>
  194. <note refid="27" author="Thorsten Ottosen"/>
  195. </mark-expected-failures>
  196. <mark-expected-failures>
  197. <test name="ptr_list_inserter"/>
  198. <toolset name="sunpro-5_3-sunos"/>
  199. <toolset name="tru64cxx65*"/>
  200. <toolset name="borland-5*"/>
  201. <toolset name="gcc-2.95.3*"/>
  202. <toolset name="msvc"/>
  203. <toolset name="vc-6_5*"/>
  204. <toolset name="vc-7_0"/>
  205. <toolset name="mipspro"/>
  206. <note author="Thorsten Ottosen" >
  207. The test depends on Boost.Pointer Container which probably does not work for
  208. this compiler.
  209. </note>
  210. </mark-expected-failures>
  211. <mark-expected-failures>
  212. <test name="ptr_list_of"/>
  213. <toolset name="tru64cxx65*"/>
  214. <toolset name="borland-5*"/>
  215. <toolset name="gcc-2.95.3*"/>
  216. <toolset name="msvc"/>
  217. <toolset name="vc-6_5*"/>
  218. <toolset name="mipspro"/>
  219. <note author="Thorsten Ottosen" >
  220. The test depends on Boost.Pointer Container which probably does not work for
  221. this compiler.
  222. </note>
  223. </mark-expected-failures>
  224. <mark-expected-failures>
  225. <test name="ptr_map_inserter"/>
  226. <toolset name="tru64cxx65*"/>
  227. <toolset name="borland-5*"/>
  228. <toolset name="gcc-2.95.3*"/>
  229. <toolset name="msvc"/>
  230. <toolset name="vc-6_5*"/>
  231. <toolset name="mipspro"/>
  232. <note author="Thorsten Ottosen" >
  233. The test depends on Boost.Pointer Container which probably does not work for
  234. this compiler.
  235. </note>
  236. </mark-expected-failures>
  237. <mark-expected-failures>
  238. <test name="std"/>
  239. <toolset name="sunpro-5_3-sunos"/>
  240. <note author="Thorsten Ottosen" >
  241. The test does not work for
  242. this compiler.
  243. </note>
  244. </mark-expected-failures>
  245. <mark-expected-failures>
  246. <test name="tuple_list_of"/>
  247. <toolset name="sunpro-5_3-sunos"/>
  248. <toolset name="borland-5*"/>
  249. <toolset name="msvc"/>
  250. <toolset name="vc-6_5*"/>
  251. <toolset name="vc-7_0"/>
  252. <note author="Thorsten Ottosen" >
  253. The test depends on Boost.Tuple which probably does not work for
  254. this compiler.
  255. </note>
  256. </mark-expected-failures>
  257. </library>
  258. <!-- bind-->
  259. <library name="bind">
  260. <mark-expected-failures>
  261. <test name="bind_cv_test"/>
  262. <test name="bind_stateful_test"/>
  263. <toolset name="intel-7.1-linux"/>
  264. <toolset name="intel-7.1-stdlib-default-linux"/>
  265. <note refid="2" author="Aleksey Gurtovoy"/>
  266. </mark-expected-failures>
  267. <mark-expected-failures>
  268. <test name="bind_dm2_test"/>
  269. <test name="mem_fn_dm_test"/>
  270. <toolset name="msvc"/>
  271. <toolset name="vc-6_5*"/>
  272. <toolset name="vc-7_0"/>
  273. <toolset name="cw-8_3"/>
  274. <note refid="31" author="Peter Dimov"/>
  275. </mark-expected-failures>
  276. <mark-expected-failures>
  277. <test name="bind_dm_test"/>
  278. <toolset name="sunpro-5_3-sunos"/>
  279. <note refid="31" author="Peter Dimov"/>
  280. </mark-expected-failures>
  281. <mark-expected-failures>
  282. <test name="bind_function_test"/>
  283. <toolset name="sunpro-5_8u1-sunos"/>
  284. <note author="Peter Dimov">
  285. This failure is caused by Boost.Function.
  286. </note>
  287. </mark-expected-failures>
  288. <mark-expected-failures>
  289. <test name="mem_fn_derived_test"/>
  290. <toolset name="sunpro-5_3-sunos"/>
  291. <note refid="31" author="Peter Dimov"/>
  292. </mark-expected-failures>
  293. <mark-expected-failures>
  294. <test name="bind_rv_sp_test"/>
  295. <toolset name="tru64cxx*"/>
  296. <toolset name="hp_cxx*"/>
  297. <note author="Markus Schoepflin">
  298. This failure is caused by a bug in the compiler triggered by the
  299. use of the debug flag '-gall'. It has been reported to the
  300. compiler vendor.
  301. </note>
  302. </mark-expected-failures>
  303. <mark-expected-failures>
  304. <test name="bind_dm3_test"/>
  305. <toolset name="borland-5*"/>
  306. <toolset name="vc-6_5*"/>
  307. <toolset name="vc-7_0"/>
  308. <note refid="31" author="Peter Dimov"/>
  309. </mark-expected-failures>
  310. </library>
  311. <!-- concept_check -->
  312. <library name="concept_check">
  313. <test name="class_concept_fail_expected">
  314. <mark-failure>
  315. <toolset name="cw-8_3*"/>
  316. <note author="B. Dawes" refid="3"/>
  317. </mark-failure>
  318. </test>
  319. </library>
  320. <!-- config -->
  321. <library name="config">
  322. <test name="config_test">
  323. <mark-failure>
  324. <toolset name="intel-win32"/>
  325. <note author="B. Dawes" refid="3"/>
  326. </mark-failure>
  327. </test>
  328. <test name="config_link_test">
  329. <mark-failure>
  330. <toolset name="*como-4_3_3-vc7*"/>
  331. <note author="J. Maddock" refid="3"/>
  332. </mark-failure>
  333. </test>
  334. <test name="limits_test">
  335. <mark-failure>
  336. <toolset name="cw-8_3*"/>
  337. <note author="B. Dawes" refid="3"/>
  338. </mark-failure>
  339. </test>
  340. <test name="limits_test">
  341. <mark-failure>
  342. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  343. <note author="Aleksey Gurtovoy" refid="4"/>
  344. </mark-failure>
  345. </test>
  346. <test name="test_thread_fail1">
  347. <mark-failure>
  348. <toolset name="sunpro-5_3-sunos"/>
  349. <note author="J. Maddock" refid="3"/>
  350. </mark-failure>
  351. </test>
  352. <test name="test_thread_fail2">
  353. <mark-failure>
  354. <toolset name="sunpro-5_3-sunos"/>
  355. <note author="J. Maddock" refid="3"/>
  356. </mark-failure>
  357. </test>
  358. </library>
  359. <!-- conversion -->
  360. <library name="conversion">
  361. <test name="lexical_cast_test">
  362. <mark-failure>
  363. <toolset name="sunpro-5_3-sunos"/>
  364. <note author="Douglas Gregor" refid="3"/>
  365. </mark-failure>
  366. </test>
  367. </library>
  368. <!-- crc -->
  369. <library name="crc">
  370. <test name="crc_test">
  371. <mark-failure>
  372. <toolset name="sunpro-5_3-sunos"/>
  373. <note author="Douglas Gregor" refid="3"/>
  374. </mark-failure>
  375. </test>
  376. </library>
  377. <!-- date_time -->
  378. <library name="date_time">
  379. <mark-unusable>
  380. <toolset name="sunpro-5_3-sunos"/>
  381. <toolset name="msvc-stlport"/>
  382. <toolset name="vc-6_5-stlport"/>
  383. <toolset name="vc-6_5"/>
  384. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  385. <toolset name="iw-7_1-vc6"/>
  386. <toolset name="dmc-8_47-stlport-4_5_3"/>
  387. </mark-unusable>
  388. <test name="testgreg_serialize*">
  389. <mark-failure>
  390. <toolset name="gcc-2.*"/>
  391. <toolset name="msvc"/>
  392. <toolset name="vc-6_5*"/>
  393. <note author="B. Garst">The serialization library does not support this compiler.
  394. </note>
  395. </mark-failure>
  396. </test>
  397. <test name="testgreg_serialize_xml">
  398. <mark-failure>
  399. <toolset name="vc-7_0"/>
  400. <note author="J. Garland">XML serialization is not supported on this compiler.
  401. </note>
  402. </mark-failure>
  403. </test>
  404. <test name="testtime_serialize*">
  405. <mark-failure>
  406. <toolset name="gcc-2.*"/>
  407. <toolset name="msvc"/>
  408. <toolset name="vc-6_5*"/>
  409. <note author="B. Garst">The serialization library does not support this compiler.
  410. </note>
  411. </mark-failure>
  412. </test>
  413. <test name="testtime_serialize_xml*">
  414. <mark-failure>
  415. <toolset name="vc-7_0"/>
  416. <note author="J. Garland">XML serialization is not supported on this compiler.
  417. </note>
  418. </mark-failure>
  419. </test>
  420. <test name="testdate_iterator">
  421. <mark-failure>
  422. <toolset name="intel-7.1-stdlib-default-linux"/>
  423. <toolset name="intel-7.1-linux"/>
  424. <note author="J. Garland" refid="19,21"/>
  425. </mark-failure>
  426. </test>
  427. <test name="testdate_iterator_dll">
  428. <mark-failure>
  429. <toolset name="intel-7.1-stdlib-default-linux"/>
  430. <toolset name="intel-7.1-linux"/>
  431. <note author="J. Garland" refid="19,21"/>
  432. </mark-failure>
  433. </test>
  434. <test name="testgeneric_period">
  435. <mark-failure>
  436. <toolset name="intel-7.1-stdlib-default-linux"/>
  437. <toolset name="intel-7.1-linux"/>
  438. <note author="J. Garland">These are strange runtime failures for
  439. which there is no obvious explanation. Later versions of the
  440. Intel compiler (eg:8.0) seem to have resolved the issue.
  441. </note>
  442. </mark-failure>
  443. </test>
  444. <test name="testgreg_wstream">
  445. <mark-failure>
  446. <toolset name="msvc"/>
  447. <toolset name="vc-6_5"/>
  448. <toolset name="vc-7_0"/>
  449. <toolset name="cw-8_3*"/>
  450. <toolset name="borland-5_6_4"/>
  451. <toolset name="borland-5_8_1"/>
  452. <toolset name="mingw*"/>
  453. <toolset name="gcc-2.95.3-linux"/>
  454. <toolset name="gcc-3.1-darwin"/>
  455. <toolset name="*como-4_3_3*"/>
  456. <note author="B. Garst" refid="19,21"/>
  457. </mark-failure>
  458. </test>
  459. <test name="testdate_input_facet*">
  460. <mark-failure>
  461. <toolset name="cw-9_4"/>
  462. <toolset name="cw-9.4"/>
  463. <toolset name="cw-9_5*"/>
  464. <note author="J. Garland">
  465. For some reason Code Warrior has difficulty compiling some of the
  466. input code. This may be related to limitations of locale handling,
  467. but it's unclear at this time (2005-May-21).
  468. </note>
  469. </mark-failure>
  470. </test>
  471. <test name="testlocal_time_facet">
  472. <mark-failure>
  473. <toolset name="borland-5_6_4"/>
  474. <toolset name="borland-5_8_1"/>
  475. <toolset name="*como-4_3_3*"/>
  476. <toolset name="gcc-2.95.3-linux"/>
  477. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  478. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  479. <toolset name="msvc"/>
  480. <toolset name="vc-6_5"/>
  481. <toolset name="vc-7_0"/>
  482. <note author="J. Garland">
  483. Some older compilers are confused by the template code here.
  484. These are new features to date-time in 1.33 and there is no
  485. plan to backport to these non-compliant compilers.
  486. </note>
  487. </mark-failure>
  488. </test>
  489. <test name="testlocal_time">
  490. <mark-failure>
  491. <toolset name="msvc"/>
  492. <toolset name="vc-6_5"/>
  493. <toolset name="*como-4_3_3*"/>
  494. <toolset name="borland-5_6_4"/>
  495. <toolset name="borland-5_8_1"/>
  496. <toolset name="gcc-2.95.3-linux"/>
  497. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  498. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  499. <note author="J. Garland">
  500. Some older compilers are confused by the template code here.
  501. These are new features to date-time in 1.33 and there is no
  502. plan to backport to these non-compliant compilers.
  503. </note>
  504. </mark-failure>
  505. </test>
  506. <test name="testlocal_time_iterator">
  507. <mark-failure>
  508. <toolset name="msvc"/>
  509. <toolset name="vc-6_5"/>
  510. <toolset name="*como-4_3_3*"/>
  511. <toolset name="borland-5_6_4"/>
  512. <toolset name="borland-5_8_1"/>
  513. <toolset name="gcc-2.95.3-linux"/>
  514. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  515. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  516. <note author="J. Garland">
  517. Some older compilers are confused by the template code here.
  518. These are new features to date-time in 1.33 and there is no
  519. plan to backport to these non-compliant compilers.
  520. </note>
  521. </mark-failure>
  522. </test>
  523. <test name="testlocal_time_period">
  524. <mark-failure>
  525. <toolset name="msvc"/>
  526. <toolset name="vc-6_5"/>
  527. <toolset name="*como-4_3_3*"/>
  528. <toolset name="borland-5_6_4"/>
  529. <toolset name="borland-5_8_1"/>
  530. <toolset name="gcc-2.95.3-linux"/>
  531. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  532. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  533. <note author="J. Garland">
  534. Some older compilers are confused by the template code here.
  535. These are new features to date-time in 1.33 and there is no
  536. plan to backport to these non-compliant compilers.
  537. </note>
  538. </mark-failure>
  539. </test>
  540. <test name="testclocks">
  541. <mark-failure>
  542. <toolset name="*como-4_3_3*"/>
  543. <toolset name="borland-5_6_4"/>
  544. <toolset name="borland-5_8_1"/>
  545. <toolset name="gcc-2.95.3-linux"/>
  546. <toolset name="msvc"/>
  547. <toolset name="vc-7_0"/>
  548. <toolset name="vc-6_5"/>
  549. <note author="J. Garland">
  550. Some compilers are confused by the template code here.
  551. These are new features to date-time in 1.33 and there is no
  552. plan to backport to these non-compliant compilers.
  553. </note>
  554. </mark-failure>
  555. </test>
  556. <test name="testlocal_time_input_facet">
  557. <mark-failure>
  558. <toolset name="borland-5_6_4"/>
  559. <toolset name="borland-5_8_1"/>
  560. <toolset name="*como-4_3_3*"/>
  561. <toolset name="cw-8_3*"/>
  562. <toolset name="gcc-2.95.3-linux"/>
  563. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  564. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  565. <toolset name="msvc"/>
  566. <toolset name="vc-6_5"/>
  567. <toolset name="vc-7_0"/>
  568. <note author="J. Garland">
  569. Some older compilers are confused by the template code here.
  570. These are new features to date-time in 1.33 and there is no
  571. plan to backport to these non-compliant compilers.
  572. </note>
  573. </mark-failure>
  574. </test>
  575. <test name="testtime_input_facet">
  576. <mark-failure>
  577. <toolset name="borland-5_6_4"/>
  578. <toolset name="borland-5_8_1"/>
  579. <toolset name="*como-4_3_3*"/>
  580. <toolset name="cw-8_3*"/>
  581. <toolset name="gcc-2.95.3-linux"/>
  582. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  583. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  584. <toolset name="msvc"/>
  585. <toolset name="vc-6_5"/>
  586. <toolset name="vc-7_0"/>
  587. <note author="J. Garland">
  588. Some older compilers are confused by the template code here.
  589. These are new features to date-time in 1.33 and there is no
  590. plan to backport to these non-compliant compilers.
  591. </note>
  592. </mark-failure>
  593. </test>
  594. <test name="testcustom_time_zone">
  595. <mark-failure>
  596. <toolset name="borland-5_6_4"/>
  597. <toolset name="borland-5_8_1"/>
  598. <toolset name="gcc-2.95.3-linux"/>
  599. <toolset name="*como-4_3_3*"/>
  600. <toolset name="msvc"/>
  601. <toolset name="vc-6_5"/>
  602. <note author="J. Garland">
  603. Some older compilers are confused by the template code here.
  604. These are new features to date-time in 1.33 and there is no
  605. plan to backport to these non-compliant compilers.
  606. </note>
  607. </mark-failure>
  608. </test>
  609. <test name="testposix_time_zone">
  610. <mark-failure>
  611. <toolset name="borland-5_6_4"/>
  612. <toolset name="borland-5_8_1"/>
  613. <toolset name="gcc-2.95.3-linux"/>
  614. <toolset name="msvc"/>
  615. <toolset name="vc-6_5"/>
  616. <note author="J. Garland">
  617. Some older compilers are confused by the template code here.
  618. These are new features to date-time in 1.33 and there is no
  619. plan to backport to these non-compliant compilers.
  620. </note>
  621. </mark-failure>
  622. </test>
  623. <test name="testtz_database">
  624. <mark-failure>
  625. <toolset name="borland-5_6_4"/>
  626. <toolset name="borland-5_8_1"/>
  627. <toolset name="*como-4_3_3*"/>
  628. <toolset name="gcc-2.95.3-linux"/>
  629. <toolset name="msvc"/>
  630. <toolset name="vc-6_5"/>
  631. <note author="J. Garland">
  632. Some compilers are confused by the template code here.
  633. These are new features to date-time in 1.33 and there is no
  634. plan to backport to these non-compliant compilers.
  635. </note>
  636. </mark-failure>
  637. </test>
  638. <test name="testtime_wstream">
  639. <mark-failure>
  640. <toolset name="gcc-2.95.3-linux"/>
  641. <toolset name="gcc-3.1-darwin"/>
  642. <toolset name="msvc"/>
  643. <toolset name="vc-6_5"/>
  644. <toolset name="vc-7_0"/>
  645. <toolset name="borland-5_6_4"/>
  646. <toolset name="borland-5_8_1"/>
  647. <toolset name="mingw*"/>
  648. <toolset name="*como-4_3_3*"/>
  649. <toolset name="tru64cxx65-042"/>
  650. <note author="B. Garst" refid="19,21,22"/>
  651. </mark-failure>
  652. </test>
  653. <test name="testtime_wstream_std_config">
  654. <mark-failure>
  655. <toolset name="gcc-2.95.3-linux"/>
  656. <toolset name="gcc-3.1-darwin"/>
  657. <toolset name="msvc"/>
  658. <toolset name="vc-6_5"/>
  659. <toolset name="vc-7_0"/>
  660. <toolset name="borland-5_6_4"/>
  661. <toolset name="borland-5_8_1"/>
  662. <toolset name="mingw*"/>
  663. <toolset name="*como-4_3_3*"/>
  664. <toolset name="tru64cxx65-042"/>
  665. <note author="B. Garst" refid="19,21,22"/>
  666. </mark-failure>
  667. </test>
  668. <test name="testdate_facet_new">
  669. <mark-failure>
  670. <toolset name="gcc-2.95.3-linux"/>
  671. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  672. <toolset name="borland-5_6_4"/>
  673. <toolset name="borland-5_8_1"/>
  674. <toolset name="cw-8_3*"/>
  675. <toolset name="msvc"/>
  676. <toolset name="vc-6_5"/>
  677. <toolset name="vc-7_0"/>
  678. <note author="J. Garland">
  679. These compilers are unfortunately able to correctly compile the
  680. new format-based input-output code for date time. Suitable, but
  681. less flexible, alternatives are available on these compilers.
  682. </note>
  683. </mark-failure>
  684. </test>
  685. <test name="testdate_facet_new_dll">
  686. <mark-failure>
  687. <toolset name="gcc-2.95.3-linux"/>
  688. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  689. <toolset name="borland-5_6_4"/>
  690. <toolset name="borland-5_8_1"/>
  691. <toolset name="cw-8_3*"/>
  692. <toolset name="msvc"/>
  693. <toolset name="vc-6_5"/>
  694. <toolset name="vc-7_0"/>
  695. <note author="J. Garland">
  696. These compilers are unfortunately able to correctly compile the
  697. new format-based input-output code for date time. Suitable, but
  698. less flexible, alternatives are available on these compilers.
  699. </note>
  700. </mark-failure>
  701. </test>
  702. <test name="testtime_facet">
  703. <mark-failure>
  704. <toolset name="gcc-2.95.3-linux"/>
  705. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  706. <toolset name="borland-5_6_4"/>
  707. <toolset name="borland-5_8_1"/>
  708. <toolset name="cw-8_3*"/>
  709. <toolset name="msvc"/>
  710. <toolset name="vc-6_5"/>
  711. <toolset name="vc-7_0"/>
  712. <note author="J. Garland">
  713. These compilers are unfortunately able to correctly compile the
  714. new format-based input-output code for date time. Suitable, but
  715. less flexible, alternatives are available on these compilers.
  716. </note>
  717. </mark-failure>
  718. </test>
  719. <test name="testwcustom_time_zone">
  720. <mark-failure>
  721. <toolset name="gcc-2.95.3-linux"/>
  722. <toolset name="mingw-3_4_2"/>
  723. <toolset name="mingw-3_4_5"/>
  724. <note author="J. Garland">
  725. These compilers are unfortunately able to correctly compile the
  726. new format-based input-output code for date time. Suitable, but
  727. less flexible, alternatives are available on these compilers.
  728. </note>
  729. </mark-failure>
  730. </test>
  731. <test name="testwposix_time_zone">
  732. <mark-failure>
  733. <toolset name="gcc-2.95.3-linux"/>
  734. <toolset name="mingw-3_4_2"/>
  735. <toolset name="mingw-3_4_5"/>
  736. <note author="J. Garland">
  737. These compilers are unfortunately able to correctly compile the
  738. new format-based input-output code for date time. Suitable, but
  739. less flexible, alternatives are available on these compilers.
  740. </note>
  741. </mark-failure>
  742. </test>
  743. <test name="testfacet">
  744. <mark-failure>
  745. <toolset name="gcc-2.95.3-linux"/>
  746. <toolset name="gcc-3.1-darwin"/>
  747. <toolset name="msvc"/>
  748. <toolset name="vc-6_5"/>
  749. <toolset name="mingw*"/>
  750. <toolset name="borland-5_6_4"/>
  751. <note author="B. Garst" refid="18,19"/>
  752. </mark-failure>
  753. </test>
  754. <test name="testfacet_dll">
  755. <mark-failure>
  756. <toolset name="gcc-2.95.3-linux"/>
  757. <toolset name="gcc-3.1-darwin"/>
  758. <toolset name="msvc"/>
  759. <toolset name="vc-6_5"/>
  760. <toolset name="mingw*"/>
  761. <toolset name="borland-5_6_4"/>
  762. <toolset name="*como-4_3_3*"/>
  763. <note author="B. Garst" refid="18,19"/>
  764. </mark-failure>
  765. </test>
  766. <test name="testgreg_year_dll">
  767. <mark-failure>
  768. <toolset name="*como-4_3_3*"/>
  769. </mark-failure>
  770. </test>
  771. <test name="testparse_date">
  772. <mark-failure>
  773. <toolset name="gcc-2.95.3-linux"/>
  774. <toolset name="msvc"/>
  775. <toolset name="vc-6_5"/>
  776. <toolset name="vc-7_0"/>
  777. <toolset name="borland-5_6_4"/>
  778. <note author="B. Garst" refid="18,20"/>
  779. </mark-failure>
  780. </test>
  781. <test name="testmicrosec_time_clock">
  782. <mark-failure>
  783. <toolset name="intel-7.1-stdlib-default-linux"/>
  784. <toolset name="*como-4_3_3*"/>
  785. <toolset name="intel-7.1-linux"/>
  786. <note author="B. Garst" refid="22"/>
  787. </mark-failure>
  788. </test>
  789. <test name="teststreams">
  790. <mark-failure>
  791. <toolset name="gcc-2.95.3-linux"/>
  792. <toolset name="gcc-3.1-darwin"/>
  793. <toolset name="msvc"/>
  794. <toolset name="vc-6_5"/>
  795. <toolset name="vc-7_0"/>
  796. <toolset name="borland-5_6_4"/>
  797. <toolset name="borland-5_8_1"/>
  798. <toolset name="mingw-3*"/>
  799. <toolset name="mingw"/>
  800. <toolset name="*como-4_3_3*"/>
  801. <note author="B. Garst" refid="18,19,20"/>
  802. </mark-failure>
  803. </test>
  804. <test name="testdate_dll">
  805. <mark-failure>
  806. <toolset name="*como-4_3_3*"/>
  807. <note author="J. Garland" date="30 Jan 2004" id="24"/>
  808. </mark-failure>
  809. </test>
  810. <test name="testgreg_day_dll">
  811. <mark-failure>
  812. <toolset name="*como-4_3_3*"/>
  813. <note author="J. Garland" date="30 Jan 2004" id="24"/>
  814. </mark-failure>
  815. </test>
  816. <test name="*_dll">
  817. <mark-failure>
  818. <toolset name="*como-4_3_3*"/>
  819. <note author="J. Garland" date="30 Jan 2004" id="24"/>
  820. </mark-failure>
  821. </test>
  822. <mark-expected-failures>
  823. <test name="testdate_dll"/>
  824. <test name="testdate_duration_dll"/>
  825. <test name="testdate_input_facet_dll"/>
  826. <test name="testdate_iterator_dll"/>
  827. <test name="testfacet_dll"/>
  828. <test name="testformatters_dll"/>
  829. <test name="testgenerators_dll"/>
  830. <test name="testgreg_durations_dll"/>
  831. <test name="testperiod_dll"/>
  832. <toolset name="cw-8_3*"/>
  833. <note author="R. Rivera" refid="25"/>
  834. </mark-expected-failures>
  835. <mark-expected-failures>
  836. <test name="testlocal_time_input_facet"/>
  837. <test name="testtime_input_facet"/>
  838. <toolset name="cw-9_4"/>
  839. <toolset name="cw-9.4"/>
  840. <toolset name="cw-9_5*"/>
  841. <note author="J. Garland">
  842. Although these tests compile, the execution aborts for
  843. an unknown reason. Note that sometimes the excution is
  844. ok on cw-9_4. This may be fixable if someone
  845. can track down the source of the problem.
  846. </note>
  847. </mark-expected-failures>
  848. <mark-expected-failures>
  849. <test name="testlocal_time"/>
  850. <test name="testlocal_time_input_facet"/>
  851. <test name="testtime_input_facet"/>
  852. <toolset name="vc-8_0*"/>
  853. <note author="J. Garland">
  854. These tests are failing with the beta2 version of VC_8. At least
  855. one of them is directly a result of the new VC_8 standard library
  856. restricting the year value in a tm struct to be positive (that is
  857. greater than year 1900). This is a change from VC7_1 and Microsoft
  858. is considering removing this restriction.
  859. </note>
  860. </mark-expected-failures>
  861. <mark-expected-failures>
  862. <test name="testtime_serialize*"/>
  863. <test name="testgreg_serialize*"/>
  864. <toolset name="vacpp"/>
  865. <note author="J. Garland">
  866. These tests are for serialization which has been marked as unusable.
  867. The issue was specifically noted on
  868. AIX version : 5.2.0.41 using IBM XL Version 8.0.0.0.
  869. </note>
  870. </mark-expected-failures>
  871. <mark-expected-failures>
  872. <test name="testfacet"/>
  873. <test name="testfacet_dll"/>
  874. <toolset name="tru64cxx*"/>
  875. <toolset name="hp_cxx*"/>
  876. <note author="Markus Schoepflin">
  877. The failure is caused by a standard library bug. It doesn't
  878. support used defined facets which are not default
  879. constructible. This has been reported to the compiler vendor.
  880. </note>
  881. </mark-expected-failures>
  882. <mark-expected-failures>
  883. <test name="testgreg_wstream"/>
  884. <test name="testparse_date"/>
  885. <test name="teststreams"/>
  886. <toolset name="tru64cxx*"/>
  887. <toolset name="hp_cxx*"/>
  888. <note author="Markus Schoepflin">
  889. The failure is caused by a standard library bug. The end-of-stream
  890. istream iterator can only be constructed when the istream iterator
  891. has been instantiated with char as the character type. This has
  892. been reported to the compiler vendor.
  893. </note>
  894. </mark-expected-failures>
  895. <mark-expected-failures>
  896. <test name="testfacet"/>
  897. <test name="testfacet_dll"/>
  898. <test name="testgreg_wstream"/>
  899. <test name="teststreams"/>
  900. <test name="testtime_wstream"/>
  901. <test name="testwcustom_time_zone"/>
  902. <test name="testwposix_time_zone"/>
  903. <toolset name="qcc-3.3.5_gpp"/>
  904. <note author="Jim Douglas" date="12 Feb 06" refid="36"/>
  905. </mark-expected-failures>
  906. </library>
  907. <!-- dynamic_bitset -->
  908. <library name="dynamic_bitset">
  909. <test name="dyn_bitset_unit_tests4">
  910. <mark-failure>
  911. <toolset name="cw-9_3"/>
  912. <note author="Aleksey Gurtovoy" refid="2"/>
  913. </mark-failure>
  914. <mark-failure>
  915. <toolset name="cw-9_3-darwin"/>
  916. <note author="Douglas Gregor" refid="2"/>
  917. </mark-failure>
  918. <mark-failure>
  919. <toolset name="sunpro-5_3-sunos"/>
  920. <note author="Douglas Gregor" refid="2"/>
  921. </mark-failure>
  922. </test>
  923. </library>
  924. <!-- filesystem -->
  925. <library name="filesystem">
  926. <mark-unusable>
  927. <toolset name="intel-7.1-linux"/>
  928. <toolset name="intel-7.1-stdlib-default-linux"/>
  929. <note author="Aleksey Gurtovoy">
  930. Due to standard library bugs this configuration is not supported by
  931. the most recent version of the library.
  932. </note>
  933. </mark-unusable>
  934. <mark-unusable>
  935. <toolset name="cw-8_3"/>
  936. <note author="Beman Dawes">
  937. Due to standard library bugs, this version is not supported.
  938. More recent version of the library should work OK.
  939. </note>
  940. </mark-unusable>
  941. <mark-expected-failures>
  942. <test name="operations_test_dll"/>
  943. <test name="path_test_dll"/>
  944. <toolset name="borland-5_6_4"/>
  945. <toolset name="mingw-3_4_2"/>
  946. <note author="Beman Dawes" refid="35"/>
  947. </mark-expected-failures>
  948. <mark-expected-failures>
  949. <test name="mbcopy"/>
  950. <test name="mbpath"/>
  951. <test name="wide_test"/>
  952. <toolset name="mingw-3_4_2"/>
  953. <toolset name="mingw-3_4_5"/>
  954. <note author="Beman Dawes" refid="19"/> <!-- no wchar_t, wstring support -->
  955. </mark-expected-failures>
  956. <mark-expected-failures>
  957. <test name="mbcopy"/>
  958. <test name="mbpath"/>
  959. <test name="wide_test"/>
  960. <toolset name="msvc*"/>
  961. <toolset name="vc-6_5*"/>
  962. <toolset name="vc-7_0"/>
  963. <toolset name="borland-5_6_4"/>
  964. <toolset name="borland-5_8_1"/>
  965. <toolset name="cw-8_3"/>
  966. <toolset name="dmc-8_4_7*"/>
  967. <note author="Beman Dawes">
  968. The library does not support wide paths on this compiler because
  969. it does not support SFINAE.
  970. </note>
  971. </mark-expected-failures>
  972. <mark-expected-failures>
  973. <test name="mbcopy"/>
  974. <test name="mbpath"/>
  975. <test name="wide_test"/>
  976. <toolset name="qcc-3.3.5-gpp"/>
  977. <note author="Jim Douglas" refid="36"/>
  978. </mark-expected-failures>
  979. </library>
  980. <!-- foreach -->
  981. <library name="foreach">
  982. <mark-unusable>
  983. <toolset name="dmc*"/>
  984. <toolset name="sunpro-5_3-sunos"/>
  985. <note author="Eric Niebler">
  986. This compiler does not support the Boost.Range
  987. library, on which Boost.Foreach depends.
  988. </note>
  989. </mark-unusable>
  990. <mark-expected-failures>
  991. <test name="rvalue_const"/>
  992. <toolset name="msvc"/>
  993. <toolset name="vc-6_5*"/>
  994. <toolset name="vc-7_0"/>
  995. <toolset name="borland-5_6_4"/>
  996. <toolset name="borland-5_8_1"/>
  997. <toolset name="gcc-2*"/>
  998. <toolset name="gcc-3.2*"/>
  999. <toolset name="gcc-3_3-darwin"/>
  1000. <toolset name="intel-linux"/>
  1001. <toolset name="vacpp"/>
  1002. <toolset name="cw-8_3"/>
  1003. <toolset name="cw-9_4"/>
  1004. <toolset name="cw-9.4"/>
  1005. <toolset name="cw-9_5-darwin"/>
  1006. <toolset name="sunpro*"/>
  1007. <toolset name="mingw"/>
  1008. <toolset name="tru64cxx*"/>
  1009. <toolset name="hp_cxx*"/>
  1010. <toolset name="intel-win32-8_1"/>
  1011. <note author="Eric Niebler">
  1012. This compiler does not support detection of
  1013. const rvalues.
  1014. </note>
  1015. </mark-expected-failures>
  1016. <mark-expected-failures>
  1017. <test name="rvalue_nonconst"/>
  1018. <toolset name="msvc"/>
  1019. <toolset name="vc-6_5*"/>
  1020. <toolset name="vc-7_0"/>
  1021. <toolset name="borland-5_6_4"/>
  1022. <toolset name="borland-5_8_1"/>
  1023. <toolset name="tru64cxx*"/>
  1024. <toolset name="hp_cxx*"/>
  1025. <toolset name="sunpro*"/>
  1026. <note author="Eric Niebler">
  1027. This compiler does not support detection of
  1028. rvalues.
  1029. </note>
  1030. </mark-expected-failures>
  1031. <mark-expected-failures>
  1032. <test name="dependent_type"/>
  1033. <toolset name="gcc-2.95.3*"/>
  1034. <toolset name="tru64cxx65*"/>
  1035. <note author="Eric Niebler">
  1036. These compilers cannot handle BOOST_FOREACH
  1037. in a template, where the collection type
  1038. depends on a template parameter.
  1039. </note>
  1040. </mark-expected-failures>
  1041. <mark-expected-failures>
  1042. <test name="user_defined"/>
  1043. <toolset name="msvc"/>
  1044. <toolset name="vc-6_5*"/>
  1045. <toolset name="vc-7_0*"/>
  1046. <note author="Eric Niebler">
  1047. This failure is because the Boost.Range extension
  1048. mechanism is broken on these compilers. It requires
  1049. ADL which these compilers do not support.
  1050. </note>
  1051. </mark-expected-failures>
  1052. </library>
  1053. <!-- format -->
  1054. <library name="format">
  1055. <mark-unusable>
  1056. <toolset name="iw-7_1*"/>
  1057. <note author="Aleksey Gurtovoy">
  1058. The failure is caused by a standard library bug: the
  1059. iostream components fail to handle <code>ios::internal</code>
  1060. flag.
  1061. </note>
  1062. </mark-unusable>
  1063. <mark-unusable>
  1064. <toolset name="sunpro-5_3-sunos"/>
  1065. </mark-unusable>
  1066. <mark-expected-failures>
  1067. <test name="format_test2"/>
  1068. <test name="format_test3"/>
  1069. <toolset name="tru64cxx65*"/>
  1070. <note author="Markus Schoepflin" refid="33"/>
  1071. </mark-expected-failures>
  1072. </library>
  1073. <!-- functional/hash -->
  1074. <library name="functional/hash">
  1075. <mark-expected-failures>
  1076. <test name="hash_value_array_test"/>
  1077. <toolset name="msvc"/>
  1078. <toolset name="vc-6_5*"/>
  1079. <toolset name="vc-7_0"/>
  1080. <note author="Daniel James">
  1081. hash_value is not overloaded for arrays for older versions
  1082. of Visual C++. There is a work around so that
  1083. boost::hash&lt;T[N]&gt;, boost::hash_combine and boost::hash_range
  1084. work.
  1085. </note>
  1086. </mark-expected-failures>
  1087. <mark-expected-failures>
  1088. <test name="hash_function_pointer_test"/>
  1089. <toolset name="msvc"/>
  1090. <toolset name="vc-6_5*"/>
  1091. <toolset name="vc-7_0"/>
  1092. <note refid="2" author="Daniel James"/>
  1093. </mark-expected-failures>
  1094. <mark-expected-failures>
  1095. <test name="hash_float_test"/>
  1096. <toolset name="gcc-3.4.3_sunos"/>
  1097. <note author="Daniel James">
  1098. On this compiler the hash function is returning the same value
  1099. for <code>std::numeric_limits&lt;long double&gt;::max()</code>,
  1100. <code>std::numeric_limits&lt;long double&gt;::max() / 2</code> and
  1101. <code>std::numeric_limits&lt;long double&gt;::max() * 3 / 4</code>.
  1102. This suggests the hash function isn't taking into account the
  1103. full range of <code>long double</code> - it might be
  1104. converting it to a <code>double</code>. This won't cause
  1105. anything to break, but means that the hash function isn't
  1106. as good as it should be for <code>long double</code>s.
  1107. </note>
  1108. </mark-expected-failures>
  1109. <mark-expected-failures>
  1110. <test name="point" />
  1111. <test name="books" />
  1112. <toolset name="msvc"/>
  1113. <toolset name="vc-6_5*"/>
  1114. <toolset name="vc-7_0"/>
  1115. <note author="Daniel James">
  1116. These examples only work on compilers with support for ADL.
  1117. It is possible to work around this, but I wanted to keep the
  1118. example code as clean as possible.
  1119. </note>
  1120. </mark-expected-failures>
  1121. <mark-expected-failures>
  1122. <test name="point" />
  1123. <toolset name="borland-5_6_4"/>
  1124. <toolset name="borland-5_8_1"/>
  1125. <note author="Daniel James">
  1126. It appears that Borland doesn't find friend functions defined
  1127. in a class by ADL. This is easily fixed but this example is
  1128. meant to show the typical way of customising boost::hash, not
  1129. the portable way.
  1130. </note>
  1131. </mark-expected-failures>
  1132. <mark-expected-failures>
  1133. <test name="hash_global_namespace_test" />
  1134. <toolset name="borland-5_6_4"/>
  1135. <toolset name="borland-5_8_1"/>
  1136. <note author="Daniel James">
  1137. The test demonstrates a Borland bug - functions that aren't
  1138. in a namespace don't appear to be found by ADL.
  1139. </note>
  1140. </mark-expected-failures>
  1141. </library>
  1142. <!-- graph -->
  1143. <library name="graph">
  1144. <mark-unusable>
  1145. <toolset name="borland-5_6_4"/>
  1146. <toolset name="msvc"/>
  1147. <toolset name="vc-6_5*"/>
  1148. <toolset name="sunpro-5_3-sunos"/>
  1149. </mark-unusable>
  1150. <mark-expected-failures>
  1151. <test name="adj_matrix_cc"/>
  1152. <test name="biconnected_components_test"/>
  1153. <test name="bfs_cc"/>
  1154. <test name="bundled_properties"/>
  1155. <test name="dfs_cc"/>
  1156. <test name="dijkstra_cc"/>
  1157. <test name="floyd_warshall_test"/>
  1158. <test name="gursoy_atun_layout_test"/>
  1159. <test name="graphviz_test"/>
  1160. <test name="subgraph"/>
  1161. <test name="transitive_closure_test"/>
  1162. <test name="vector_graph_cc"/>
  1163. <toolset name="vc-7_0"/>
  1164. <note refid="3" author="D. Gregor"/>
  1165. </mark-expected-failures>
  1166. <mark-expected-failures>
  1167. <test name="graphviz_test"/>
  1168. <toolset name="vc-8_0"/>
  1169. <note refid="1" author="D. Gregor"/>
  1170. </mark-expected-failures>
  1171. <mark-expected-failures>
  1172. <test name="betweenness_centrality_test"/>
  1173. <toolset name="iw-7_1-vc6*"/>
  1174. <toolset name="vc-7_0"/>
  1175. <note refid="3" author="Aleksey Gurtovoy"/>
  1176. </mark-expected-failures>
  1177. <mark-expected-failures>
  1178. <test name="graphviz_test"/>
  1179. <toolset name="gcc-2.95.3-linux"/>
  1180. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1181. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  1182. <toolset name="como-4_3_3-vc7_1"/>
  1183. <toolset name="cw-8_3"/>
  1184. <toolset name="cw-9_3-darwin"/>
  1185. <toolset name="cw-9_4-darwin"/>
  1186. <toolset name="cw-9_4"/>
  1187. <toolset name="cw-9_4-darwin"/>
  1188. <toolset name="cw-9_5-darwin"/>
  1189. <toolset name="iw-7_1-vc6"/>
  1190. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  1191. <note refid="3" author="Doug Gregor"/>
  1192. </mark-expected-failures>
  1193. <mark-expected-failures>
  1194. <test name="csr_graph_test"/>
  1195. <toolset name="gcc-2.95.3-linux"/>
  1196. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1197. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  1198. </mark-expected-failures>
  1199. <mark-expected-failures>
  1200. <test name="bundled_properties"/>
  1201. <toolset name="qcc-3.3*"/>
  1202. <note author="Jim Douglas" date="18 Feb 06" refid="27"/>
  1203. </mark-expected-failures>
  1204. </library>
  1205. <!-- io-->
  1206. <library name="io">
  1207. <mark-expected-failures>
  1208. <test name="ios_state_unit_test"/>
  1209. <toolset name="borland-5_6_4"/>
  1210. <toolset name="iw-7_1-vc6*"/>
  1211. <toolset name="msvc"/>
  1212. <toolset name="vc-6_5*"/>
  1213. <note refid="4" author="Aleksey Gurtovoy"/>
  1214. </mark-expected-failures>
  1215. <mark-expected-failures>
  1216. <test name="ios_state_test"/>
  1217. <test name="ios_state_unit_test"/>
  1218. <toolset name="tru64cxx65*"/>
  1219. <note refid="34" author="Markus Schoepflin"/>
  1220. </mark-expected-failures>
  1221. <mark-expected-failures>
  1222. <test name="ios_state_unit_test"/>
  1223. <toolset name="gcc-2.95.3-*"/>
  1224. <note refid="3" author="Doug Gregor"/>
  1225. </mark-expected-failures>
  1226. <mark-expected-failures>
  1227. <test name="ios_state_unit_test"/>
  1228. <toolset name="intel-win32-8*"/>
  1229. <note refid="3" author="Stefan Slapeta"/>
  1230. </mark-expected-failures>
  1231. </library>
  1232. <!-- iostreams -->
  1233. <library name="iostreams">
  1234. <mark-unusable>
  1235. <toolset name="sunpro-5_3-sunos"/>
  1236. <toolset name="dmc-8_43-stlport-4_5_3"/>
  1237. <note author="Jonathan Turkanis" refid="17"/>
  1238. </mark-unusable>
  1239. <mark-expected-failures>
  1240. <test name="seekable_file_test"/>
  1241. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1242. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  1243. <toolset name="borland-5_6_4"/>
  1244. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  1245. <toolset name="msvc-stlport"/>
  1246. <toolset name="vc-6_5-stlport"/>
  1247. <toolset name="*como-4_3_3*"/>
  1248. <note author="Jonathan Turkanis" refid="4"/>
  1249. </mark-expected-failures>
  1250. <mark-expected-failures>
  1251. <test name="code_converter_test"/>
  1252. <test name="wide_stream_test"/>
  1253. <toolset name="gcc-2.95.3-linux"/>
  1254. <toolset name="*mingw*"/>
  1255. <toolset name="*cygwin*"/>
  1256. <toolset name="gcc-3.3.6-osf1"/>
  1257. <note author="Jonathan Turkanis" refid="19"/>
  1258. </mark-expected-failures>
  1259. <mark-expected-failures>
  1260. <test name="bzip2_test"/>
  1261. <test name="file_descriptor_test"/>
  1262. <test name="mapped_file_test"/>
  1263. <toolset name="*como-4_3_3*"/>
  1264. <note author="Jonathan Turkanis">
  1265. compiler can't compile "windows.h" in strict mode
  1266. </note>
  1267. </mark-expected-failures>
  1268. <mark-expected-failures>
  1269. <test name="gzip_test"/>
  1270. <test name="zlib_test"/>
  1271. <toolset name="como-4_3_3-vc7_1"/>
  1272. <note author="Jonathan Turkanis">
  1273. The failure reflects a problem with the build system: the zlib
  1274. object files are generated in the wrong directory.
  1275. </note>
  1276. </mark-expected-failures>
  1277. <mark-expected-failures>
  1278. <test name="stdio_filter_test"/>
  1279. <toolset name="*como-4_3_3*"/>
  1280. <note author="Jonathan Turkanis" refid="0"/>
  1281. </mark-expected-failures>
  1282. <!--
  1283. <mark-expected-failures>
  1284. <test name="mapped_file_test"/>
  1285. <toolset name="intel-win32-9_0"/>
  1286. <note author="Jonathan Turkanis" refid="0"/>
  1287. </mark-expected-failures>
  1288. -->
  1289. <mark-expected-failures reason="?">
  1290. <test name="direct_adapter_test"/>
  1291. <test name="gzip_test"/>
  1292. <toolset name="gcc-2.95.3-linux"/>
  1293. <note author="Jonathan Turkanis" refid="29"/>
  1294. </mark-expected-failures>
  1295. <mark-expected-failures reason="?">
  1296. <test name="file_descriptor_test"/>
  1297. <toolset name="gcc-3_4_4-cygwin"/>
  1298. <note author="Jonathan Turkanis" refid="29"/>
  1299. </mark-expected-failures>
  1300. <mark-expected-failures>
  1301. <test name="finite_state_filter_test"/>
  1302. <toolset name="borland-5_6_4"/>
  1303. <toolset name="msvc"/>
  1304. <toolset name="vc-6_5*"/>
  1305. <toolset name="vc-7_0"/>
  1306. <toolset name="gcc-2.95.3*"/>
  1307. <note author="Jonathan Turkanis" refid="2"/>
  1308. </mark-expected-failures>
  1309. <mark-expected-failures>
  1310. <test name="code_converter_test"/>
  1311. <test name="wide_stream_test"/>
  1312. <toolset name="qcc-3.3.5-gpp"/>
  1313. <note author="Jim Douglas" date="12 Feb 06" refid="36"/>
  1314. </mark-expected-failures>
  1315. <mark-expected-failures>
  1316. <test name="mapped_file_test"/>
  1317. <toolset name="qcc-3.3*"/>
  1318. <note author="Jim Douglas" date="19 Feb 06">
  1319. Memory mapped files are not supported in QNX Neutrino version 6.3.0.
  1320. </note>
  1321. </mark-expected-failures>
  1322. </library>
  1323. <!-- lambda -->
  1324. <library name="lambda">
  1325. <mark-unusable>
  1326. <toolset name="msvc"/>
  1327. <toolset name="vc-6_5*"/>
  1328. <toolset name="borland"/>
  1329. <toolset name="borland-5_6_4"/>
  1330. <toolset name="borland-5_5_1"/>
  1331. <toolset name="vc-7_0"/>
  1332. <toolset name="sunpro-5_3-sunos"/>
  1333. <note refid="17">
  1334. </note>
  1335. </mark-unusable>
  1336. <mark-expected-failures>
  1337. <test name="bll_and_function"/>
  1338. <toolset name="vc-8_0"/>
  1339. <note author="Aleksey Gurtovoy" refid="6"/>
  1340. </mark-expected-failures>
  1341. <mark-expected-failures>
  1342. <test name="member_pointer_test"/>
  1343. <toolset name="gcc-2.95.3-*"/>
  1344. <note author="Doug Gregor" refid="3"/>
  1345. </mark-expected-failures>
  1346. </library>
  1347. <!-- logic -->
  1348. <library name="logic">
  1349. <test name="tribool_io_test">
  1350. <mark-failure>
  1351. <toolset name="msvc-stlport"/>
  1352. <toolset name="vc-6_5-stlport"/>
  1353. <toolset name="gcc-2.95.3-linux"/>
  1354. <toolset name="sunpro-5_3-sunos"/>
  1355. <toolset name="tru64cxx65-042"/>
  1356. <note author="Douglas Gregor" refid="4"/>
  1357. </mark-failure>
  1358. </test>
  1359. </library>
  1360. <!-- MPL -->
  1361. <library name="mpl">
  1362. <mark-unusable>
  1363. <toolset name="sunpro-5_3-sunos"/>
  1364. <note author="Aleksey Gurtovoy" date="10 Jul 2005">
  1365. The compiler is not supported by the library due to an
  1366. utterly broken templates support.
  1367. </note>
  1368. </mark-unusable>
  1369. <mark-expected-failures>
  1370. <test name="as_sequence"/>
  1371. <test name="is_sequence"/>
  1372. <test name="has_xxx"/>
  1373. <test name="no_has_xxx"/>
  1374. <test name="single_view"/>
  1375. <toolset name="cw-8_3*"/>
  1376. <note author="Aleksey Gurtovoy" date="17 Sep 2004">
  1377. This failure is caused by a deficient SFINAE implementation; the bug
  1378. was fixed in the next major compiler version (CodeWarrior 9.x).
  1379. </note>
  1380. </mark-expected-failures>
  1381. <mark-expected-failures>
  1382. <test name="is_sequence"/>
  1383. <test name="as_sequence"/>
  1384. <test name="has_xxx"/>
  1385. <toolset name="borland-5_6_4"/>
  1386. <toolset name="gcc-2.95.3*"/>
  1387. <note author="Aleksey Gurtovoy" date="17 Sep 2004">
  1388. This failure is caused by a deficient SFINAE implementation.
  1389. </note>
  1390. </mark-expected-failures>
  1391. <mark-expected-failures>
  1392. <test name="apply"/>
  1393. <test name="for_each"/>
  1394. <test name="multiset"/>
  1395. <test name="zip_view"/>
  1396. <toolset name="borland-5_6_4"/>
  1397. <note author="Aleksey Gurtovoy" date="17 Sep 2004" refid="26"/>
  1398. </mark-expected-failures>
  1399. <mark-expected-failures>
  1400. <test name="assert"/>
  1401. <test name="at"/>
  1402. <test name="back"/>
  1403. <test name="front"/>
  1404. <test name="has_xxx"/>
  1405. <test name="multiset"/>
  1406. <test name="no_has_xxx"/>
  1407. <test name="zip_view"/>
  1408. <toolset name="mipspro"/>
  1409. <note author="Aleksey Gurtovoy" date="17 Sep 2004" refid="26"/>
  1410. </mark-expected-failures>
  1411. <mark-expected-failures>
  1412. <test name="quote"/>
  1413. <toolset name="borland-5_6_4"/>
  1414. <toolset name="msvc"/>
  1415. <toolset name="vc-6_5*"/>
  1416. <toolset name="mipspro"/>
  1417. <note author="Aleksey Gurtovoy" date="17 Sep 2004">
  1418. This failure is caused by a lack of compiler support for template template
  1419. parameters.
  1420. </note>
  1421. </mark-expected-failures>
  1422. <mark-expected-failures>
  1423. <test name="map"/>
  1424. <test name="set"/>
  1425. <test name="set_c"/>
  1426. <toolset name="borland-5_6_4"/>
  1427. <toolset name="gcc-2.95.3*"/>
  1428. <toolset name="mipspro"/>
  1429. <note author="Aleksey Gurtovoy" date="17 Sep 2004">
  1430. This is an advanced functionality that hasn't been ported to the deficient
  1431. compilers (yet). Patches are welcome!
  1432. </note>
  1433. </mark-expected-failures>
  1434. <mark-expected-failures>
  1435. <test name="map"/>
  1436. <toolset name="msvc"/>
  1437. <toolset name="vc-6_5*"/>
  1438. <toolset name="vc-7_0"/>
  1439. <note author="Aleksey Gurtovoy" date="17 Sep 2004">
  1440. This is an advanced functionality that hasn't been ported to the deficient
  1441. compilers (yet). Patches are welcome!
  1442. </note>
  1443. </mark-expected-failures>
  1444. </library>
  1445. <!-- multi_array -->
  1446. <library name="multi_array">
  1447. <mark-unusable>
  1448. <toolset name="borland"/>
  1449. <toolset name="borland-5_6_4"/>
  1450. <toolset name="borland-5_5_1"/>
  1451. <note author="Alisdair Meredith" date="30 Jan 2004">
  1452. <p>
  1453. This library has never worked [on Borland 5.5.1 and 5.6.4], and the only tests
  1454. that 'pass' are compile-fail tests failing for the wrong reasons!
  1455. </p>
  1456. </note>
  1457. </mark-unusable>
  1458. <mark-unusable>
  1459. <toolset name="sunpro-5_3-sunos"/>
  1460. <note author="Douglas Gregor" refid="3"/>
  1461. </mark-unusable>
  1462. <!-- RG: testing usability <mark-unusable>
  1463. <toolset name="gcc-2.95.3*"/>
  1464. <toolset name="gcc-2.95.3-linux"/>
  1465. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  1466. <note author="Ronald Garcia" date="08 Jan 2006">
  1467. <p>
  1468. These compiler/standard library combinations don't
  1469. support enable_if.
  1470. </p>
  1471. </note>
  1472. </mark-unusable> -->
  1473. <test name="constructors">
  1474. <mark-failure>
  1475. <toolset name="msvc"/>
  1476. <toolset name="vc-6_5"/>
  1477. <note author="Ronald Garcia" date="13 Jul 2004">
  1478. Known error in MSVC. see
  1479. <a href="http://boost-consulting.com/boost/libs/multi_index/doc/compiler_specifics.html#msvc_60">
  1480. http://boost-consulting.com/boost/libs/multi_index/doc/compiler_specifics.html#msvc_60</a>
  1481. for more information.
  1482. </note>
  1483. </mark-failure>
  1484. </test>
  1485. <mark-expected-failures>
  1486. <test name="assign_to_array"/>
  1487. <toolset name="gcc-2.95.3*"/>
  1488. <note author="Aleksey Gurtovoy" date="21 Sep 2004" refid="2"/>
  1489. </mark-expected-failures>
  1490. <mark-expected-failures>
  1491. <test name="assign"/>
  1492. <test name="compare"/>
  1493. <test name="concept_checks"/>
  1494. <test name="constructors"/>
  1495. <test name="iterators"/>
  1496. <test name="resize"/>
  1497. <test name="stl_interaction"/>
  1498. <toolset name="gcc-2.95.3*"/>
  1499. <note author="Doug Gregor" date="23 Jun 2005" refid="3"/>
  1500. </mark-expected-failures>
  1501. </library>
  1502. <!-- multi_index -->
  1503. <library name="multi_index">
  1504. <mark-unusable>
  1505. <toolset name="borland-5_6_4"/>
  1506. <note author="J. L&#243;pez" date="05 Jul 2004" refid="17"/>
  1507. </mark-unusable>
  1508. <mark-unusable>
  1509. <toolset name="gcc-2.95.3-linux"/>
  1510. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1511. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  1512. <note author="J. L&#243;pez" date="09 Jul 2004" refid="17"/>
  1513. </mark-unusable>
  1514. <mark-unusable>
  1515. <toolset name="*como-4_3_3-msvc"/>
  1516. <note author="J. L&#243;pez" date="30 Jul 2004">
  1517. The VC++ 6.0 backend runs out of internal resources while
  1518. trying to process the Comeau output for this library;
  1519. Comeau Computing has been asked about a solution.
  1520. On the other hand, Comeau 4.3.3 with VC++ 7.0 backend works
  1521. fine.
  1522. </note>
  1523. </mark-unusable>
  1524. <mark-unusable>
  1525. <toolset name="sunpro-5_3-sunos"/>
  1526. <toolset name="sunpro-5_8u1-sunos"/>
  1527. <note author="J. L&#243;pez" date="22 Apr 2005" refid="17"/>
  1528. </mark-unusable>
  1529. <mark-unusable>
  1530. <toolset name="dmc-8_43-stlport-4_5_3"/>
  1531. <toolset name="dmc-8_44b-stlport-4_5_3"/>
  1532. <note author="J. L&#243;pez" date="03 Jun 2005" refid="17"/>
  1533. </mark-unusable>
  1534. <mark-expected-failures>
  1535. <test name="test_serialization"/>
  1536. <toolset name="msvc-stlport"/>
  1537. <toolset name="vc-6_5-stlport"/>
  1538. <note author="J. L&#243;pez" date="10 Jan 2005">
  1539. This error shows when using the dynamic version of the STLport
  1540. library. The problem is reportedly fixed in STLport 5.0 (in beta
  1541. stage as of this writing.)
  1542. </note>
  1543. </mark-expected-failures>
  1544. <mark-expected-failures>
  1545. <test name="test_serialization"/>
  1546. <toolset name="vacpp"/>
  1547. <note author="J. L&#243;pez" date="07 Jul 2005">
  1548. Boost.Serialization is not supported on this platform.
  1549. </note>
  1550. </mark-expected-failures>
  1551. <mark-expected-failures>
  1552. <test name="test_serialization"/>
  1553. <toolset name="tru64cxx71-006"/>
  1554. <toolset name="hp_cxx-71_006_tru64"/>
  1555. <note author="J. L&#243;pez" date="16 Mar 2006">
  1556. This test fails due to limitations of the template
  1557. instantiation model used in the testing environment
  1558. (-timplicit_local) resulting in erroneous duplication of some
  1559. function-static variables. The test passes with other template
  1560. instantiation models.
  1561. </note>
  1562. </mark-expected-failures>
  1563. </library>
  1564. <!-- optional -->
  1565. <library name="optional">
  1566. <mark-expected-failures>
  1567. <test name="optional_test_ref"/>
  1568. <toolset name="msvc"/>
  1569. <toolset name="vc-6_5*"/>
  1570. <toolset name="vc-7_0"/>
  1571. <note author="Aleksey Gurtovoy" refid="3"/>
  1572. </mark-expected-failures>
  1573. <mark-expected-failures>
  1574. <test name="optional_test_ref_fail1"/>
  1575. <toolset name="borland-5_6_4"/>
  1576. <note author="Fernando Cacciola" refid="2"/>
  1577. </mark-expected-failures>
  1578. <mark-expected-failures>
  1579. <test name="optional_test_fail3a"/>
  1580. <toolset name="gcc-3_3-darwin"/>
  1581. <note author="Fernando Cacciola" refid="2"/>
  1582. </mark-expected-failures>
  1583. <mark-expected-failures>
  1584. <test name="optional_test_inplace_fail2"/>
  1585. <toolset name="gcc-3_3-darwin"/>
  1586. <note author="Fernando Cacciola" refid="2"/>
  1587. </mark-expected-failures>
  1588. </library>
  1589. <library name="pool">
  1590. <mark-unusable>
  1591. <toolset name="gcc-2.95.3-*"/>
  1592. <note author="Doug Gregor" refid="2"/>
  1593. </mark-unusable>
  1594. </library>
  1595. <!-- preprocessor -->
  1596. <library name="preprocessor">
  1597. <mark-expected-failures>
  1598. <test name="seq"/>
  1599. <toolset name="cw-8_3"/>
  1600. <note author="Paul Mensonides" refid="2"/>
  1601. </mark-expected-failures>
  1602. </library>
  1603. <!-- serialization -->
  1604. <library name="serialization">
  1605. <mark-unusable>
  1606. <toolset name="vacpp*" />
  1607. <toolset name="mipspro*" />
  1608. <toolset name="dmc*" />
  1609. <toolset name="sunpro*" />
  1610. <note author="Robert Ramey" date="13 Jul 2004" refid="9,17,18"/>
  1611. </mark-unusable>
  1612. <mark-unusable>
  1613. <toolset name="gcc-2.95.3-linux"/>
  1614. <note author="Robert Ramey" date="12 Feb 05" refid="18,19"/>
  1615. </mark-unusable>
  1616. <mark-expected-failures>
  1617. <test name="*_warchive"/>
  1618. <test name="test_codecvt_null"/>
  1619. <test name="test_utf8_codecvt"/>
  1620. <toolset name="mingw*"/>
  1621. <toolset name="gcc-2.95.3-linux"/>
  1622. <note author="Robert Ramey" date="12 Feb 05" refid="19"/>
  1623. </mark-expected-failures>
  1624. <mark-expected-failures>
  1625. <test name="test_void_cast*"/>
  1626. <toolset name="msvc"/>
  1627. <toolset name="vc-6_5*"/>
  1628. <note author="Robert Ramey" date="20 Sep 2004" refid="16,29"/>
  1629. </mark-expected-failures>
  1630. <mark-expected-failures>
  1631. <test name="*_warchive"/>
  1632. <test name="test_codecvt_null"/>
  1633. <test name="test_utf8_codecvt"/>
  1634. <toolset name="*como-4_3_3*"/>
  1635. <note author="Robert Ramey" date="12 Feb 05" refid="5"/>
  1636. </mark-expected-failures>
  1637. <mark-expected-failures>
  1638. <test name="test_demo_portable_archive_dll"/>
  1639. <toolset name="vc*"/>
  1640. <toolset name="borland-5_6_4"/>
  1641. <toolset name="msvc"/>
  1642. <toolset name="vc-6_5*"/>
  1643. <toolset name="iw*"/>
  1644. <toolset name="intel-win32-*"/>
  1645. <note author="Robert Ramey" date="12 Feb 05" refid="2,29"/>
  1646. </mark-expected-failures>
  1647. <mark-expected-failures>
  1648. <test name="test_reset_object_address*"/>
  1649. <toolset name="msvc"/>
  1650. <toolset name="vc-6_5*"/>
  1651. <note author="Robert Ramey" date="12 Feb 05" refid="6,29"/>
  1652. </mark-expected-failures>
  1653. <mark-expected-failures>
  1654. <test name="test_array*"/>
  1655. <test name="test_demo_fast_archive"/>
  1656. <test name="test_demo_fast_archive_dll"/>
  1657. <toolset name="borland*"/>
  1658. <note author="Robert Ramey" date="12 Feb 05" refid="26">
  1659. Borland compilers don't handle templates with array type arguments properly.
  1660. </note>
  1661. </mark-expected-failures>
  1662. <mark-expected-failures>
  1663. <test name="test_demo"/>
  1664. <test name="test_demo_dll"/>
  1665. <test name="test_demo_exception"/>
  1666. <test name="test_demo_exception_dll"/>
  1667. <test name="test_demo_shared_ptr"/>
  1668. <test name="test_demo_shared_ptr_dll"/>
  1669. <test name="test_demo_xml_save"/>
  1670. <test name="test_demo_xml_load"/>
  1671. <test name="test_demo_xml_save_dll"/>
  1672. <test name="test_demo_xml_load_dll"/>
  1673. <toolset name="msvc"/>
  1674. <toolset name="vc-6_5*"/>
  1675. <toolset name="vc-7_0"/>
  1676. <note author="Robert Ramey" refid="6"/>
  1677. </mark-expected-failures>
  1678. <mark-expected-failures>
  1679. <test name="test_demo_fast_archive"/>
  1680. <test name="test_demo_fast_archive_dll"/>
  1681. <toolset name="msvc"/>
  1682. <toolset name="vc-6_5*"/>
  1683. <note author="Robert Ramey" refid="6"/>
  1684. </mark-expected-failures>
  1685. <mark-expected-failures>
  1686. <test name="test_const"/>
  1687. <toolset name="msvc"/>
  1688. <toolset name="vc-6_5*"/>
  1689. <toolset name="vc-7_0"/>
  1690. <note author="Aleksey Gurtovoy" refid="29"/>
  1691. </mark-expected-failures>
  1692. <mark-expected-failures>
  1693. <test name="test_demo_pimpl"/>
  1694. <test name="test_demo_pimpl_dll"/>
  1695. <test name="test_diamond*"/>
  1696. <test name="test_mult_archive_types"/>
  1697. <test name="test_mult_archive_types_dll"/>
  1698. <toolset name="msvc"/>
  1699. <toolset name="vc-6_5*"/>
  1700. <toolset name="vc-7_0"/>
  1701. <note author="Robert Ramey" refid="6">
  1702. msvc 6 compiler failure. The facility being tested conflicts the the
  1703. compiler in a fundamental way and cannnot be worked around.
  1704. </note>
  1705. </mark-expected-failures>
  1706. <mark-expected-failures>
  1707. <test name="test_mi*"/>
  1708. <toolset name="msvc"/>
  1709. <toolset name="vc-6_5*"/>
  1710. <note author="Robert Ramey" refid="6">
  1711. msvc 6 compiler failure. The facility being tested conflicts the the
  1712. compiler in a fundamental way and cannnot be worked around.
  1713. </note>
  1714. </mark-expected-failures>
  1715. <mark-expected-failures>
  1716. <test name="*_dll"/>
  1717. <toolset name="msvc-stlport"/>
  1718. <toolset name="vc-6_5-stlport"/>
  1719. <note author="Robert Ramey">
  1720. This failure appears when STLPort is built and used as a DLL with msvc 6.
  1721. STLPort suggests that the next version of STLPort(5.0) will include a workaround
  1722. for this problem.
  1723. </note>
  1724. </mark-expected-failures>
  1725. <mark-expected-failures>
  1726. <test name="*"/>
  1727. <toolset name="gcc-2.95.3-stlport*"/>
  1728. <note author="Aleksey Gurtovoy">
  1729. The library is believed to work in this configuration <i>if compiled against
  1730. Spirit 1.6</i>. The latter is not provided by the particular testing
  1731. environment these tests have been run in.
  1732. </note>
  1733. </mark-expected-failures>
  1734. <mark-expected-failures>
  1735. <test name="test_demo"/>
  1736. <test name="test_demo_dll"/>
  1737. <test name="test_demo_exception*"/>
  1738. <test name="test_demo_shared_ptr*"/>
  1739. <test name="test_demo_xml*"/>
  1740. <test name="test_exported*"/>
  1741. <test name="test_mi*"/>
  1742. <test name="test_mult_archive_types*"/>
  1743. <test name="test_no_rtti*"/>
  1744. <test name="test_non_default_ctor2*"/>
  1745. <test name="test_registered*"/>
  1746. <test name="test_shared_ptr*"/>
  1747. <test name="test_unregistered*"/>
  1748. <toolset name="cw*"/>
  1749. <note author="Robert Ramey" refid="29">
  1750. All tests that serialize derived pointers currently fail with Metrowerks compilers.
  1751. </note>
  1752. </mark-expected-failures>
  1753. <mark-expected-failures>
  1754. <test name="test_no_rtti_*"/>
  1755. <test name="test_set_*"/>
  1756. <toolset name="borland-5_6_4"/>
  1757. <note author="Aleksey Gurtovoy" refid="29"/>
  1758. </mark-expected-failures>
  1759. <mark-expected-failures>
  1760. <test name="test_array_binary_archive"/>
  1761. <test name="test_array_text_*"/>
  1762. <note author="Aleksey Gurtovoy" refid="29"/>
  1763. </mark-expected-failures>
  1764. <mark-expected-failures>
  1765. <test name="test_smart_cast"/>
  1766. <toolset name="intel-7.1-linux"/>
  1767. <note author="Aleksey Gurtovoy" refid="29"/>
  1768. </mark-expected-failures>
  1769. <mark-expected-failures>
  1770. <test name="test_array_text_archive_dll"/>
  1771. <test name="test_array_text_warchive_dll"/>
  1772. <test name="test_array_xml_archive_dll"/>
  1773. <test name="test_array_xml_warchive_dll"/>
  1774. <test name="test_binary_text_archive_dll"/>
  1775. <test name="test_binary_text_warchive_dll"/>
  1776. <test name="test_binary_xml_archive_dll"/>
  1777. <test name="test_binary_xml_warchive_dll"/>
  1778. <test name="test_class_info_save_text_archive_dll"/>
  1779. <test name="test_class_info_save_text_warchive_dll"/>
  1780. <test name="test_class_info_save_xml_warchive_dll"/>
  1781. <test name="test_contained_class_text_archive_dll"/>
  1782. <test name="test_contained_class_text_warchive_dll"/>
  1783. <test name="test_contained_class_xml_archive_dll"/>
  1784. <test name="test_contained_class_xml_warchive_dll"/>
  1785. <test name="test_cyclic_ptrs_text_archive_dll"/>
  1786. <test name="test_cyclic_ptrs_text_warchive_dll"/>
  1787. <test name="test_cyclic_ptrs_xml_archive_dll"/>
  1788. <test name="test_cyclic_ptrs_xml_warchive_dll"/>
  1789. <test name="test_delete_pointer_text_archive_dll"/>
  1790. <test name="test_delete_pointer_text_warchive_dll"/>
  1791. <test name="test_delete_pointer_xml_archive_dll"/>
  1792. <test name="test_delete_pointer_xml_warchive_dll"/>
  1793. <test name="test_demo_auto_ptr_dll"/>
  1794. <test name="test_demo_dll"/>
  1795. <test name="test_demo_exception_dll"/>
  1796. <test name="test_demo_pimpl_dll"/>
  1797. <test name="test_demo_polymorphic_dll"/>
  1798. <test name="test_deque_text_archive_dll"/>
  1799. <test name="test_deque_text_warchive_dll"/>
  1800. <test name="test_deque_xml_archive_dll"/>
  1801. <test name="test_deque_xml_warchive_dll"/>
  1802. <test name="test_derived_class_ptr_text_archive_dll"/>
  1803. <test name="test_derived_class_ptr_text_warchive_dll"/>
  1804. <test name="test_derived_class_ptr_xml_archive_dll"/>
  1805. <test name="test_derived_class_ptr_xml_warchive_dll"/>
  1806. <test name="test_derived_class_text_archive_dll"/>
  1807. <test name="test_derived_class_text_warchive_dll"/>
  1808. <test name="test_derived_class_xml_archive_dll"/>
  1809. <test name="test_derived_class_xml_warchive_dll"/>
  1810. <test name="test_derived_text_archive_dll"/>
  1811. <test name="test_derived_text_warchive_dll"/>
  1812. <test name="test_derived_xml_warchive_dll"/>
  1813. <test name="test_list_ptrs_text_archive_dll"/>
  1814. <test name="test_list_ptrs_text_warchive_dll"/>
  1815. <test name="test_list_ptrs_xml_archive_dll"/>
  1816. <test name="test_list_ptrs_xml_warchive_dll"/>
  1817. <test name="test_list_text_archive_dll"/>
  1818. <test name="test_list_text_warchive_dll"/>
  1819. <test name="test_list_xml_archive_dll"/>
  1820. <test name="test_list_xml_warchive_dll"/>
  1821. <test name="test_map_text_archive_dll"/>
  1822. <test name="test_map_text_warchive_dll"/>
  1823. <test name="test_map_xml_archive_dll"/>
  1824. <test name="test_map_xml_warchive_dll"/>
  1825. <test name="test_multiple_ptrs_text_archive_dll"/>
  1826. <test name="test_multiple_ptrs_text_warchive_dll"/>
  1827. <test name="test_multiple_ptrs_xml_archive_dll"/>
  1828. <test name="test_multiple_ptrs_xml_warchive_dll"/>
  1829. <test name="test_non_default_ctor_text_archive_dll"/>
  1830. <test name="test_non_default_ctor_text_warchive_dll"/>
  1831. <test name="test_non_default_ctor_xml_archive_dll"/>
  1832. <test name="test_non_default_ctor_xml_warchive_dll"/>
  1833. <test name="test_non_intrusive_ctor_text_archive_dll"/>
  1834. <test name="test_non_intrusive_ctor_text_warchive_dll"/>
  1835. <test name="test_non_intrusive_ctor_xml_archive_dll"/>
  1836. <test name="test_non_intrusive_ctor_xml_warchive_dll"/>
  1837. <test name="test_non_intrusive_text_archive_dll"/>
  1838. <test name="test_non_intrusive_text_warchive_dll"/>
  1839. <test name="test_non_intrusive_xml_archive_dll"/>
  1840. <test name="test_non_intrusive_xml_warchive_dll"/>
  1841. <test name="test_null_ptr_text_archive_dll"/>
  1842. <test name="test_null_ptr_text_warchive_dll"/>
  1843. <test name="test_null_ptr_xml_archive_dll"/>
  1844. <test name="test_null_ptr_xml_warchive_dll"/>
  1845. <test name="test_nvp_text_archive_dll"/>
  1846. <test name="test_nvp_text_warchive_dll"/>
  1847. <test name="test_nvp_xml_archive_dll"/>
  1848. <test name="test_nvp_xml_warchive_dll"/>
  1849. <test name="test_object_text_warchive_dll"/>
  1850. <test name="test_object_xml_warchive_dll"/>
  1851. <test name="test_optional_text_archive_dll"/>
  1852. <test name="test_optional_text_warchive_dll"/>
  1853. <test name="test_optional_xml_archive_dll"/>
  1854. <test name="test_optional_xml_warchive_dll"/>
  1855. <test name="test_polymorphic_text_archive_dll"/>
  1856. <test name="test_polymorphic_text_warchive_dll"/>
  1857. <test name="test_polymorphic_xml_archive_dll"/>
  1858. <test name="test_polymorphic_xml_warchive_dll"/>
  1859. <test name="test_primitive_text_warchive_dll"/>
  1860. <test name="test_primitive_xml_warchive_dll"/>
  1861. <test name="test_private_ctor_dll"/>
  1862. <test name="test_recursion_text_archive_dll"/>
  1863. <test name="test_recursion_text_warchive_dll"/>
  1864. <test name="test_recursion_xml_archive_dll"/>
  1865. <test name="test_recursion_xml_warchive_dll"/>
  1866. <test name="test_reset_object_address_dll"/>
  1867. <test name="test_set_text_archive_dll"/>
  1868. <test name="test_set_text_warchive_dll"/>
  1869. <test name="test_set_xml_archive_dll"/>
  1870. <test name="test_set_xml_warchive_dll"/>
  1871. <test name="test_simple_class_ptr_text_archive_dll"/>
  1872. <test name="test_simple_class_ptr_text_warchive_dll"/>
  1873. <test name="test_simple_class_ptr_xml_archive_dll"/>
  1874. <test name="test_simple_class_ptr_xml_warchive_dll"/>
  1875. <test name="test_simple_class_text_archive_dll"/>
  1876. <test name="test_simple_class_text_warchive_dll"/>
  1877. <test name="test_simple_class_xml_archive_dll"/>
  1878. <test name="test_simple_class_xml_warchive_dll"/>
  1879. <test name="test_split_text_archive_dll"/>
  1880. <test name="test_split_text_warchive_dll"/>
  1881. <test name="test_split_xml_warchive_dll"/>
  1882. <test name="test_tracking_text_archive_dll"/>
  1883. <test name="test_tracking_text_warchive_dll"/>
  1884. <test name="test_tracking_xml_warchive_dll"/>
  1885. <test name="test_variant_text_archive_dll"/>
  1886. <test name="test_variant_text_warchive_dll"/>
  1887. <test name="test_variant_xml_archive_dll"/>
  1888. <test name="test_variant_xml_warchive_dll"/>
  1889. <test name="test_vector_text_archive_dll"/>
  1890. <test name="test_vector_text_warchive_dll"/>
  1891. <test name="test_vector_xml_archive_dll"/>
  1892. <test name="test_vector_xml_warchive_dll"/>
  1893. <toolset name="cw-9_5-darwin"/>
  1894. <note author="Doug Gregor" refid="35"/>
  1895. </mark-expected-failures>
  1896. <mark-expected-failures>
  1897. <test name="test_demo_fast_archive"/>
  1898. <toolset name="cw-8*"/>
  1899. <note author="Rene Rivera">
  1900. This is caused by a compiler bug in this particular version, but not present
  1901. in version thereafter. The compiler has some difficulties resolving operators
  1902. to methods in the archive classes. This can be worked around by calling the
  1903. operator directly, and such a work around is already present in library code.
  1904. This test demonstrates that this can happen in user code.
  1905. </note>
  1906. </mark-expected-failures>
  1907. <mark-expected-failures>
  1908. <test name="test_diamond*"/>
  1909. <toolset name="cw-8*"/>
  1910. <toolset name="cw-9_5-darwin"/>
  1911. <note author="Rene Rivera">
  1912. The CW compilers have problems with the static construction idiom used to
  1913. implement the type registration in the Boost.Serialization library. In many
  1914. cases CW specific work arounds are implemented in the library but this one
  1915. is not immediately solvable. There is a user work around possible, please
  1916. contact the library developers on the Boost list for information on the
  1917. work around if needed.
  1918. </note>
  1919. </mark-expected-failures>
  1920. <mark-expected-failures>
  1921. <test name="test_class_info_load_text*"/>
  1922. <test name="test_class_info_load_xml_warchive*"/>
  1923. <toolset name="cw-9_5-darwin"/>
  1924. <note author="Rene Rivera" refid="29"/>
  1925. </mark-expected-failures>
  1926. <mark-expected-failures>
  1927. <test name="test_class_info_load_text_warchive_dll"/>
  1928. <toolset name="vc-6_5"/>
  1929. <note author="Doug Gregor" refid="29"/>
  1930. </mark-expected-failures>
  1931. <mark-expected-failures>
  1932. <test name="test_const_load_fail1"/>
  1933. <test name="test_const_load_fail1_nvp"/>
  1934. <test name="test_const_load_fail2"/>
  1935. <test name="test_const_load_fail2_nvp"/>
  1936. <toolset name="borland-5_6_4"/>
  1937. <note author="Doug Gregor" refid="29"/>
  1938. </mark-expected-failures>
  1939. <mark-expected-failures>
  1940. <test name="test_const_save_fail1"/>
  1941. <test name="test_const_save_fail2"/>
  1942. <test name="test_const_save_fail3"/>
  1943. <toolset name="vc-6_5"/>
  1944. <toolset name="vc-6_5-stlport"/>
  1945. <toolset name="vc-7_0"/>
  1946. <note author="Doug Gregor" refid="29"/>
  1947. </mark-expected-failures>
  1948. <mark-expected-failures>
  1949. <test name="test_map_binary_archive_dll"/>
  1950. <test name="test_map_text_archive_dll"/>
  1951. <test name="test_map_text_warchive_dll"/>
  1952. <toolset name="vc-6_5"/>
  1953. <toolset name="vc-7_0"/>
  1954. <note author="Doug Gregor" refid="29"/>
  1955. </mark-expected-failures>
  1956. <mark-expected-failures>
  1957. <test name="test_shared_ptr_132_xml_archive_dll"/>
  1958. <toolset name="intel-win32-8_1"/>
  1959. <note author="Doug Gregor" refid="29"/>
  1960. </mark-expected-failures>
  1961. <mark-expected-failures>
  1962. <test name="test_demo_dll"/>
  1963. <test name="test_demo_exception_dll"/>
  1964. <test name="test_demo_shared_ptr_dll"/>
  1965. <test name="test_demo_xml_load_dll"/>
  1966. <test name="test_demo_xml_save_dll"/>
  1967. <toolset name="intel-win32-8_1"/>
  1968. <note author="Doug Gregor" refid="35"/>
  1969. </mark-expected-failures>
  1970. <mark-expected-failures>
  1971. <test name="test_variant_*"/>
  1972. <toolset name="tru64cxx65*"/>
  1973. <note author="Markus Schoepflin">
  1974. The variant library is not supported for this compiler version.
  1975. Therefore serialization of variants doesn't work.
  1976. </note>
  1977. </mark-expected-failures>
  1978. <mark-expected-failures>
  1979. <test name="*_warchive"/>
  1980. <test name="*_warchive_dll"/>
  1981. <toolset name="qcc-3.3.5-gpp"/>
  1982. <note author="Jim Douglas" date="12 Feb 06" refid="36"/>
  1983. </mark-expected-failures>
  1984. </library>
  1985. <!-- smart_ptr -->
  1986. <library name="smart_ptr">
  1987. <mark-expected-failures>
  1988. <test name="shared_ptr_assign_fail"/>
  1989. <toolset name="gcc-2.9*"/>
  1990. <toolset name="sunpro-5_3-sunos"/>
  1991. <note refid="32" author="Peter Dimov"/>
  1992. </mark-expected-failures>
  1993. <mark-expected-failures>
  1994. <test name="weak_ptr_test"/>
  1995. <toolset name="tru64cxx71-006"/>
  1996. <toolset name="hp_cxx-71_006_*"/>
  1997. <note author="Markus Schoepflin" refid="3"/>
  1998. </mark-expected-failures>
  1999. <mark-expected-failures>
  2000. <test name="auto_ptr_rv_test"/>
  2001. <toolset name="gcc-2.9*"/>
  2002. <toolset name="borland-5*"/>
  2003. <toolset name="cw-8*"/>
  2004. <note refid="31" author="Peter Dimov"/>
  2005. </mark-expected-failures>
  2006. <mark-expected-failures>
  2007. <test name="pointer_to_other_test"/>
  2008. <toolset name="vc-6*"/>
  2009. <toolset name="vc-7_0"/>
  2010. <note refid="31" author="Peter Dimov"/>
  2011. </mark-expected-failures>
  2012. <mark-expected-failures>
  2013. <test name="shared_ptr_alloc2_test"/>
  2014. <toolset name="vc-6*"/>
  2015. <note refid="31" author="Peter Dimov"/>
  2016. </mark-expected-failures>
  2017. </library>
  2018. <!-- spirit -->
  2019. <library name="spirit">
  2020. <mark-unusable>
  2021. <toolset name="msvc"/>
  2022. <toolset name="vc-6_5*"/>
  2023. <toolset name="borland-5_5_1"/>
  2024. <toolset name="borland-5_6_4"/>
  2025. <toolset name="vc-7_0"/>
  2026. <toolset name="gcc-2.95.3-linux"/>
  2027. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  2028. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  2029. <toolset name="sunpro-5_3-sunos"/>
  2030. <note>
  2031. <p>
  2032. Historically, Spirit supported a lot of compilers, including (to some
  2033. extent) poorly conforming compilers such as VC6. Spirit v1.6.x will be
  2034. the last release that will support older poorly conforming compilers.
  2035. Starting from Spirit v1.8.0, ill conforming compilers will not be
  2036. supported. If you are still using one of these older compilers, you can
  2037. still use Spirit v1.6.x.
  2038. </p>
  2039. <p>
  2040. The reason why Spirit v1.6.x worked on old non-conforming compilers is
  2041. that the authors laboriously took the trouble of searching for
  2042. workarounds to make these compilers happy. The process takes a lot of
  2043. time and energy, especially when one encounters the dreaded ICE or
  2044. "Internal Compiler Error". Sometimes searching for a single workaround
  2045. takes days or even weeks. Sometimes, there are no known workarounds. This
  2046. stifles progress a lot. And, as the library gets more progressive and
  2047. takes on more advanced C++ techniques, the difficulty is escalated to
  2048. even new heights.
  2049. </p>
  2050. <p>
  2051. Spirit v1.6.x will still be supported. Maintenance and bug fixes will
  2052. still be applied. There will still be active development for the back-
  2053. porting of new features introduced in Spirit v1.8.0 (and Spirit 1.9.0)
  2054. to lesser able compilers; hopefully, fueled by contributions from the
  2055. community. For instance, there is already a working AST tree back-port
  2056. for VC6 and VC7 by Peder Holt.
  2057. </p>
  2058. </note>
  2059. </mark-unusable>
  2060. <mark-expected-failures>
  2061. <test name="action_tests*"/>
  2062. <toolset name="iw-7_1-vc6"/>
  2063. <note author="Aleksey Gurtovoy" refid="4"/>
  2064. </mark-expected-failures>
  2065. <mark-expected-failures>
  2066. <test name="ast_calc_tests*"/>
  2067. <test name="closure_tests*"/>
  2068. <test name="multi_pass_compile_tests"/>
  2069. <test name="repeat_ast_tests*"/>
  2070. <toolset name="intel-8.0-linux"/>
  2071. <toolset name="intel-8.1-linux"/>
  2072. <note author="Aleksey Gurtovoy">
  2073. This failure is caused by a compiler bug that manifests itself in the
  2074. particular environment/hardware configuration the test has been run in.
  2075. You may or may not experience this issue in your local setup.
  2076. </note>
  2077. </mark-expected-failures>
  2078. <mark-expected-failures>
  2079. <test name="escape_char_parser_tests*"/>
  2080. <toolset name="intel-7.1-linux"/>
  2081. <toolset name="intel-7.1-stdlib-default-linux"/>
  2082. <note author="Aleksey Gurtovoy" refid="19"/>
  2083. </mark-expected-failures>
  2084. <mark-expected-failures>
  2085. <test name="escape_char_parser_tests*"/>
  2086. <toolset name="iw-7_1-vc6*"/>
  2087. <note author="Aleksey Gurtovoy" refid="28"/>
  2088. </mark-expected-failures>
  2089. <mark-expected-failures>
  2090. <test name="chset_tests*"/>
  2091. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  2092. <note author="Aleksey Gurtovoy" refid="28"/>
  2093. </mark-expected-failures>
  2094. </library>
  2095. <!-- typeof -->
  2096. <library name="typeof">
  2097. <mark-unusable>
  2098. <toolset name="borland*"/>
  2099. <toolset name="gcc-2.95.*"/>
  2100. <toolset name="sunpro*"/>
  2101. <toolset name="dmc*"/>
  2102. <note author="Arkadiy Vertleyb">
  2103. This compiler is not supported.
  2104. </note>
  2105. </mark-unusable>
  2106. <mark-expected-failures>
  2107. <test name="*_native"/>
  2108. <toolset name="vc-8_0*"/>
  2109. <toolset name="intel-win32*"/>
  2110. <toolset name="como-4_3_3-vc7_1"/>
  2111. <toolset name="tru64*"/>
  2112. <toolset name="hp_cxx*"/>
  2113. <note author="Arkadiy Vertleyb">
  2114. Native mode is not supported for this compiler.
  2115. </note>
  2116. </mark-expected-failures>
  2117. <mark-expected-failures>
  2118. <test name="*_emulation"/>
  2119. <toolset name="msvc"/>
  2120. <toolset name="vc-6_5*"/>
  2121. <toolset name="vc-7_0"/>
  2122. <toolset name="cw-8_*"/>
  2123. <note author="Arkadiy Vertleyb">
  2124. Emulation mode is not supported for this compiler.
  2125. </note>
  2126. </mark-expected-failures>
  2127. <mark-expected-failures>
  2128. <test name="function_native"/>
  2129. <test name="template_tpl_native"/>
  2130. <toolset name="msvc"/>
  2131. <toolset name="vc-6_5*"/>
  2132. <toolset name="vc-7_0"/>
  2133. <note author="Arkadiy Vertleyb">
  2134. The feature is not supported by this compiler.
  2135. </note>
  2136. </mark-expected-failures>
  2137. <mark-expected-failures>
  2138. <test name="function_native"/>
  2139. <toolset name="cw-8_*"/>
  2140. <note author="Arkadiy Vertleyb">
  2141. The feature is not supported by this compiler.
  2142. </note>
  2143. </mark-expected-failures>
  2144. </library>
  2145. <!-- function -->
  2146. <library name="function">
  2147. <mark-unusable>
  2148. <toolset name="sunpro-5_3-sunos"/>
  2149. <note author="Douglas Gregor" refid="3"/>
  2150. </mark-unusable>
  2151. <test name="allocator_test">
  2152. <mark-failure>
  2153. <toolset name="msvc"/>
  2154. <toolset name="vc-6_5"/>
  2155. <toolset name="vc-7_0"/>
  2156. <note author="B. Dawes" refid="5"/>
  2157. </mark-failure>
  2158. </test>
  2159. <test name="contains_test">
  2160. <mark-failure>
  2161. <toolset name="msvc"/>
  2162. <toolset name="vc-6_5*"/>
  2163. <note refid="3" author="D. Gregor"/>
  2164. </mark-failure>
  2165. </test>
  2166. <test name="function_30">
  2167. <mark-failure>
  2168. <toolset name="vacpp"/>
  2169. <note refid="16" author="D. Gregor"/>
  2170. </mark-failure>
  2171. </test>
  2172. <test name="function_arith_cxx98">
  2173. <mark-failure>
  2174. <toolset name="borland"/>
  2175. <toolset name="borland-5_6_4"/>
  2176. <toolset name="msvc"/>
  2177. <toolset name="vc-6_5"/>
  2178. <toolset name="vc-7_0"/>
  2179. <note author="B. Dawes" refid="3"/>
  2180. </mark-failure>
  2181. </test>
  2182. <test name="function_ref_cxx98">
  2183. <mark-failure>
  2184. <toolset name="borland"/>
  2185. <toolset name="borland-5_6_4"/>
  2186. <toolset name="msvc"/>
  2187. <toolset name="vc-6_5"/>
  2188. <toolset name="vc-7_0"/>
  2189. <note author="B. Dawes" refid="3"/>
  2190. </mark-failure>
  2191. </test>
  2192. <test name="lambda_test">
  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. <mark-failure>
  2202. <toolset name="cw-8_3*"/>
  2203. <note author="B. Dawes" refid="2"/>
  2204. </mark-failure>
  2205. </test>
  2206. <test name="lib_function_test">
  2207. <mark-failure>
  2208. <toolset name="borland"/>
  2209. <toolset name="borland-5_6_4"/>
  2210. <toolset name="msvc"/>
  2211. <toolset name="vc-6_5"/>
  2212. <toolset name="vc-7_0"/>
  2213. <note author="B. Dawes" refid="3"/>
  2214. </mark-failure>
  2215. <mark-failure>
  2216. <toolset name="cw-8_3*"/>
  2217. <note author="B. Dawes" refid="2"/>
  2218. </mark-failure>
  2219. </test>
  2220. <test name="mem_fun_cxx98">
  2221. <mark-failure>
  2222. <toolset name="borland"/>
  2223. <toolset name="borland-5_6_4"/>
  2224. <toolset name="msvc"/>
  2225. <toolset name="vc-6_5"/>
  2226. <toolset name="vc-7_0"/>
  2227. <note author="B. Dawes" refid="3"/>
  2228. </mark-failure>
  2229. <mark-failure>
  2230. <toolset name="cw-8_3*"/>
  2231. <note author="B. Dawes" refid="2"/>
  2232. </mark-failure>
  2233. </test>
  2234. <test name="std_bind_cxx98">
  2235. <mark-failure>
  2236. <toolset name="borland"/>
  2237. <toolset name="borland-5_6_4"/>
  2238. <toolset name="msvc"/>
  2239. <toolset name="vc-6_5"/>
  2240. <toolset name="vc-7_0"/>
  2241. <note author="B. Dawes" refid="3"/>
  2242. </mark-failure>
  2243. </test>
  2244. <test name="std_bind_portable">
  2245. <mark-failure>
  2246. <toolset name="msvc"/>
  2247. <toolset name="vc-6_5"/>
  2248. <note author="B. Dawes" refid="5"/>
  2249. </mark-failure>
  2250. </test>
  2251. <test name="sum_avg_cxx98">
  2252. <mark-failure>
  2253. <toolset name="borland"/>
  2254. <toolset name="borland-5_6_4"/>
  2255. <toolset name="msvc"/>
  2256. <toolset name="vc-6_5"/>
  2257. <toolset name="vc-7_0"/>
  2258. <note author="B. Dawes" refid="3"/>
  2259. </mark-failure>
  2260. </test>
  2261. </library>
  2262. <!-- iterator -->
  2263. <library name="iterator">
  2264. <test name="interoperable_fail" category="Corner-case tests">
  2265. <mark-failure>
  2266. <toolset name="gcc-3.3*"/>
  2267. <toolset name="gcc-3_3*"/>
  2268. <toolset name="gcc-3.2*"/>
  2269. <toolset name="gcc-2*"/>
  2270. <toolset name="gcc"/>
  2271. <toolset name="mingw"/>
  2272. <toolset name="borland*"/>
  2273. <toolset name="cw-8*"/>
  2274. <toolset name="qcc-3.3*"/>
  2275. <note author="D. Abrahams">
  2276. This failure is caused by a compiler bug. Templated operators
  2277. that combine different iterators built with iterator_facade or
  2278. iterator_adaptor may be present in an overload set even when those
  2279. iterators are not interoperable. The usual result is that error
  2280. messages generated by illegal use of these operators will be of
  2281. lower quality.
  2282. </note>
  2283. </mark-failure>
  2284. </test>
  2285. <test name="is_convertible_fail" category="Corner-case tests">
  2286. <mark-failure>
  2287. <toolset name="gcc-2*"/>
  2288. <toolset name="gcc"/>
  2289. <toolset name="mingw"/>
  2290. <toolset name="borland*"/>
  2291. <toolset name="cw-8*"/>
  2292. <toolset name="vc-6*"/>
  2293. <toolset name="vc-7_0*"/>
  2294. <toolset name="msvc"/>
  2295. <note author="D. Abrahams">
  2296. This failure is caused by a compiler bug.
  2297. <code>is_convertible&lt;T,U&gt;::value</code> may be true for unrelated
  2298. iterators <code>T</code> and <code>U</code>
  2299. (including many of the Boost specialized adaptors) which use
  2300. <code>enable_if_convertible</code> to restrict the applicability
  2301. of converting constructors, even when <code>T</code> is not
  2302. convertible to <code>U</code> because instantiating the
  2303. conversion will cause a compilation failure.
  2304. </note>
  2305. </mark-failure>
  2306. </test>
  2307. <test name="indirect_iter_member_types" category="Corner-case tests"/>
  2308. <mark-expected-failures>
  2309. <test name="indirect_iter_member_types"/>
  2310. <test name="pointee"/>
  2311. <toolset name="borland"/>
  2312. <toolset name="borland-5_6_4"/>
  2313. <note author="D. Abrahams">
  2314. This failure is caused by a compiler bug. The
  2315. compiler tends to drop const-ness and as a result
  2316. some indirect_iterators will have pointer and
  2317. reference members of <code>T*</code> and <code>T&amp;</code> that should
  2318. have been <code>T const*</code> and <code>T const&amp;</code>.
  2319. </note>
  2320. </mark-expected-failures>
  2321. <mark-expected-failures>
  2322. <test name="zip_iterator_test"/>
  2323. <toolset name="borland"/>
  2324. <toolset name="borland-5_6_4"/>
  2325. <note author="Aleksey Gurtovoy" date="19 Sep 2004" refid="26"/>
  2326. </mark-expected-failures>
  2327. </library>
  2328. <!-- math -->
  2329. <library name="math">
  2330. <mark-unusable>
  2331. <toolset name="gcc-2.95.3-*"/>
  2332. <note author="Doug Gregor" refid="3"/>
  2333. </mark-unusable>
  2334. <test name="quaternion_mult_incl_test">
  2335. <mark-failure>
  2336. <toolset name="intel-win32"/>
  2337. <note author="B. Dawes" refid="3"/>
  2338. </mark-failure>
  2339. </test>
  2340. <mark-expected-failures>
  2341. <test name="octonion_test"/>
  2342. <test name="quaternion_test"/>
  2343. <toolset name="gcc-3.4.3_sunos"/>
  2344. <note author="Caleb Epstein">
  2345. There appears to be a bug in gcc's <code>std::exp (long
  2346. double)</code> on this platform.
  2347. </note>
  2348. </mark-expected-failures>
  2349. <mark-expected-failures>
  2350. <test name="complex_test"/>
  2351. <test name="log1p_expm1_test"/>
  2352. <toolset name="sunpro*"/>
  2353. <note author="John Maddock">
  2354. std::numeric_limits&gt;long double&lt;::infinity() is apparently
  2355. broken in this compiler: it's filed as bug 6347520 with Sun.
  2356. </note>
  2357. </mark-expected-failures>
  2358. <mark-expected-failures>
  2359. <test name="complex_test"/>
  2360. <toolset name="msvc"/>
  2361. <note author="John Maddock">
  2362. Incomplete std::complex support make these tests pointless
  2363. (the complex trig functions are absent).
  2364. </note>
  2365. </mark-expected-failures>
  2366. <mark-expected-failures>
  2367. <test name="complex_test"/>
  2368. <toolset name="qcc-3.3.5-cpp"/>
  2369. <note author="Jim Douglas" date="14 Feb 06" refid="27"/>
  2370. </mark-expected-failures>
  2371. </library>
  2372. <!-- numeric/conversion -->
  2373. <library name="numeric/conversion">
  2374. <test name="udt_example_0">
  2375. <mark-failure>
  2376. <toolset name="vc-6_5-stlport"/>
  2377. <toolset name="borland-5_6_4"/>
  2378. <toolset name="msvc"/>
  2379. <toolset name="vc-6_5*"/>
  2380. <note author="Fernando Cacciola" refid="30"/>
  2381. </mark-failure>
  2382. </test>
  2383. <test name="udt_support_test">
  2384. <mark-failure>
  2385. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  2386. <note author="Fernando Cacciola" refid="3"/>
  2387. </mark-failure>
  2388. </test>
  2389. </library>
  2390. <!-- numeric/interval -->
  2391. <library name="numeric/interval">
  2392. <mark-unusable>
  2393. <toolset name="borland"/>
  2394. <toolset name="borland-5_6_4"/>
  2395. <toolset name="msvc"/>
  2396. <toolset name="vc-6_5*"/>
  2397. <toolset name="vc-7_0"/>
  2398. </mark-unusable>
  2399. <mark-expected-failures>
  2400. <test name="det"/>
  2401. <test name="mul"/>
  2402. <test name="overflow"/>
  2403. <toolset name="tru64cxx*"/>
  2404. <toolset name="hp_cxx*"/>
  2405. <note author="G. Melquiond">
  2406. This test ensures the inclusion property of interval
  2407. arithmetic is available for built-in floating-point types
  2408. <code>float</code> and <code>double</code>. If the test
  2409. fails, <code>interval&lt;float&gt;</code> and
  2410. <code>interval&lt;double&gt;</code> should not be used
  2411. on this compiler/platform since there will be no
  2412. numerical guarantee.
  2413. </note>
  2414. </mark-expected-failures>
  2415. <mark-expected-failures>
  2416. <test name="cmp_exn"/>
  2417. <test name="cmp_set"/>
  2418. <test name="cmp_tribool"/>
  2419. <toolset name="gcc-2.95.3-linux"/>
  2420. <note author="Aleksey Gurtovoy" refid="2"/>
  2421. </mark-expected-failures>
  2422. <mark-expected-failures>
  2423. <test name="det"/>
  2424. <toolset name="cw-8_3*"/>
  2425. <note author="Aleksey Gurtovoy" refid="2"/>
  2426. </mark-expected-failures>
  2427. </library>
  2428. <!-- numeric/ublas -->
  2429. <library name="numeric/ublas">
  2430. <mark-unusable>
  2431. <toolset name="borland"/>
  2432. <toolset name="borland-5_6_4"/>
  2433. <toolset name="gcc-3_3-darwin"/>
  2434. <note author="M.Stevens" refid="17"/>
  2435. </mark-unusable>
  2436. <mark-unusable>
  2437. <toolset name="cw-8_3"/>
  2438. <toolset name="msvc"/>
  2439. <toolset name="vc-6_5*"/>
  2440. <toolset name="vc-7_0"/>
  2441. <toolset name="iw-7_1-vc6"/>
  2442. <toolset name="gcc-2.95*"/>
  2443. <note author="M.Stevens" refid="30"/>
  2444. </mark-unusable>
  2445. <mark-expected-failures>
  2446. <test name="test3"/>
  2447. <toolset name="qcc-3.3.5-cpp"/>
  2448. <note author="Jim Douglas" date="14 Feb 06" refid="27"/>
  2449. </mark-expected-failures>
  2450. </library>
  2451. <!-- program_options -->
  2452. <library name="program_options">
  2453. <!-- Mark unusable toolsets -->
  2454. <mark-unusable>
  2455. <toolset name="gcc-2.95.3-linux"/>
  2456. <note>
  2457. The failure is caused by standard library deficiencies
  2458. -- it lacks the basic_string class template and
  2459. the &lt;locale&gt; header.
  2460. </note>
  2461. </mark-unusable>
  2462. <mark-unusable>
  2463. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  2464. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  2465. <note refid="2"/>
  2466. </mark-unusable>
  2467. <mark-unusable>
  2468. <toolset name="msvc"/>
  2469. <toolset name="vc-6_5*"/>
  2470. <note refid="17"/>
  2471. </mark-unusable>
  2472. <mark-unusable>
  2473. <toolset name="vc-7_0"/>
  2474. <note refid="29"/>
  2475. </mark-unusable>
  2476. <!-- Mark expected failures -->
  2477. <test name="unicode_test*">
  2478. <mark-failure>
  2479. <toolset name="iw-7_1-vc6"/>
  2480. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  2481. <toolset name="msvc"/>
  2482. <toolset name="vc-6_5*"/>
  2483. <note>The failures are caused by problems
  2484. with std::locale implementation</note>
  2485. </mark-failure>
  2486. </test>
  2487. <test name="options_description_test_dll">
  2488. <mark-failure>
  2489. <toolset name="msvc"/>
  2490. <toolset name="vc-6_5"/>
  2491. <toolset name="iw-7_1-vc6"/>
  2492. <note refid="23"/>
  2493. </mark-failure>
  2494. </test>
  2495. <test name="variable_map_test_dll">
  2496. <mark-failure>
  2497. <toolset name="iw-7_1-vc6"/>
  2498. <note refid="23"/>
  2499. </mark-failure>
  2500. </test>
  2501. <test name="*dll">
  2502. <mark-failure>
  2503. <toolset name="cw-8_3*"/>
  2504. <note refid="18"/>
  2505. </mark-failure>
  2506. </test>
  2507. <test name="*dll">
  2508. <mark-failure>
  2509. <toolset name="*como-4_3_3*"/>
  2510. <note refid="24"/>
  2511. </mark-failure>
  2512. </test>
  2513. <mark-expected-failures>
  2514. <test name="variable_map_test"/>
  2515. <test name="variable_map_test_dll"/>
  2516. <toolset name="msvc"/>
  2517. <toolset name="vc-6_5*"/>
  2518. <note>
  2519. The failures are caused by compiler bug: it's not possible to
  2520. explicitly pass template arguments to member template function. The
  2521. failure is serious and makes one of the primary interfaces
  2522. unusable.
  2523. </note>
  2524. </mark-expected-failures>
  2525. <mark-expected-failures>
  2526. <test name="cmdline_test_dll"/>
  2527. <test name="options_description_test_dll"/>
  2528. <test name="parsers_test_dll"/>
  2529. <test name="variable_map_test_dll"/>
  2530. <test name="positional_options_test_dll"/>
  2531. <toolset name="mingw-3*"/>
  2532. <note author="Aleksey Gurtovoy" refid="29"/>
  2533. </mark-expected-failures>
  2534. <mark-expected-failures>
  2535. <test name="unicode_test*"/>
  2536. <toolset name="mingw-3*"/>
  2537. <note refid="19"/>
  2538. </mark-expected-failures>
  2539. <mark-expected-failures>
  2540. <test name="unicode_test_dll"/>
  2541. <toolset name="*-darwin"/>
  2542. <note refid="35" author="Doug Gregor"/>
  2543. </mark-expected-failures>
  2544. <mark-expected-failures>
  2545. <test name="unicode_test*"/>
  2546. <toolset name="qcc-3.3.5-gpp"/>
  2547. <note author="Jim Douglas" date="12 Feb 06" refid="36"/>
  2548. </mark-expected-failures>
  2549. </library>
  2550. <!-- pointer container -->
  2551. <library name="ptr_container">
  2552. <mark-unusable>
  2553. <toolset name="gcc-2.95.3*"/>
  2554. <toolset name="sunpro-5_3-sunos"/>
  2555. <toolset name="tru64cxx65-042"/>
  2556. <toolset name="borland-5_6_4"/>
  2557. <toolset name="msvc"/>
  2558. <toolset name="vc-6_5*"/>
  2559. <toolset name="vc-7_0"/>
  2560. <toolset name="dmc-8_43-stlport-4_5_3"/>
  2561. </mark-unusable>
  2562. <mark-expected-failures>
  2563. <test name="ptr_list"/>
  2564. <toolset name="gcc-4.0.*"/>
  2565. <note author="Thorsten Ottosen">
  2566. The error is due to problems in the standard library implementation.
  2567. It should be fixed in newer versions of the compiler.
  2568. </note>
  2569. </mark-expected-failures>
  2570. <mark-expected-failures>
  2571. <test name="ptr_list"/>
  2572. <toolset name="gcc-4.0.0*"/>
  2573. <note author="Thorsten Ottosen">
  2574. The error is due to problems in the standard library implementation.
  2575. It should be fixed in newer versions of the compiler.
  2576. </note>
  2577. </mark-expected-failures>
  2578. </library>
  2579. <!-- python -->
  2580. <library name="python">
  2581. <mark-unusable>
  2582. <toolset name="borland"/>
  2583. <toolset name="borland-5_5_1"/>
  2584. <toolset name="borland-5_6_4"/>
  2585. <note refid="2"/>
  2586. <note refid="17"/>
  2587. </mark-unusable>
  2588. <mark-unusable>
  2589. <toolset name="tru64cxx65*"/>
  2590. <note author="Markus Schoepflin">
  2591. The library fails to compile because of an error in the C++
  2592. standard library implementation on this platform. It incorrectly
  2593. assumes that fpos_t is of an integral type, which is not always
  2594. the case. This is fixed in a later release.
  2595. </note>
  2596. </mark-unusable>
  2597. <mark-expected-failures>
  2598. <test name="args"/>
  2599. <test name="auto_ptr"/>
  2600. <test name="builtin_convertors"/>
  2601. <test name="callbacks"/>
  2602. <test name="crossmod_exception"/>
  2603. <test name="data_members"/>
  2604. <test name="enum"/>
  2605. <test name="exception_translator"/>
  2606. <test name="extract"/>
  2607. <test name="implicit"/>
  2608. <test name="iterator"/>
  2609. <test name="list"/>
  2610. <test name="map_indexing_suite"/>
  2611. <test name="object"/>
  2612. <test name="opaque"/>
  2613. <test name="pickle2"/>
  2614. <test name="polymorphism"/>
  2615. <test name="polymorphism2"/>
  2616. <test name="shared_ptr"/>
  2617. <test name="slice"/>
  2618. <test name="test_pointer_adoption"/>
  2619. <test name="try"/>
  2620. <test name="vector_indexing_suite"/>
  2621. <test name="virtual_functions"/>
  2622. <toolset name="gcc-2.95.3-linux"/>
  2623. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  2624. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  2625. <note author="D. Abrahams">
  2626. The problems with GCC 2.x only occur when C++ exceptions are thrown and
  2627. the framework catches them, which happens quite often in the tests.
  2628. So technically GCC 2.x is usable if you're careful.
  2629. </note>
  2630. </mark-expected-failures>
  2631. <mark-expected-failures>
  2632. <test name="args"/>
  2633. <test name="auto_ptr"/>
  2634. <test name="back_reference"/>
  2635. <test name="ben_scott1"/>
  2636. <test name="bienstman1"/>
  2637. <test name="bienstman2"/>
  2638. <test name="bienstman3"/>
  2639. <test name="bienstman4"/>
  2640. <test name="bienstman5"/>
  2641. <test name="callbacks"/>
  2642. <test name="cltree"/>
  2643. <test name="const_argument"/>
  2644. <test name="crossmod_exception_a"/>
  2645. <test name="crossmod_exception_b"/>
  2646. <test name="data_members"/>
  2647. <test name="defaults"/>
  2648. <test name="dict"/>
  2649. <test name="docstring"/>
  2650. <test name="enum"/>
  2651. <test name="exception_translator"/>
  2652. <test name="extract"/>
  2653. <test name="implicit"/>
  2654. <test name="injected"/>
  2655. <test name="input_iterator"/>
  2656. <test name="int_map_indexing_suite"/>
  2657. <test name="iterator"/>
  2658. <test name="keywords"/>
  2659. <test name="list"/>
  2660. <test name="long"/>
  2661. <test name="m1"/>
  2662. <test name="m2"/>
  2663. <test name="map_indexing_suite"/>
  2664. <test name="minimal"/>
  2665. <test name="module_tail"/>
  2666. <test name="multi_arg_constructor"/>
  2667. <test name="nested"/>
  2668. <test name="object"/>
  2669. <test name="opaque"/>
  2670. <test name="operators"/>
  2671. <test name="pickle1"/>
  2672. <test name="pickle2"/>
  2673. <test name="pickle3"/>
  2674. <test name="pickle4"/>
  2675. <test name="polymorphism"/>
  2676. <test name="polymorphism2"/>
  2677. <test name="properties"/>
  2678. <test name="register_ptr"/>
  2679. <test name="return_arg"/>
  2680. <test name="shared_ptr"/>
  2681. <test name="slice"/>
  2682. <test name="staticmethod"/>
  2683. <test name="str"/>
  2684. <test name="test_builtin_converters"/>
  2685. <test name="test_pointer_adoption"/>
  2686. <test name="tuple"/>
  2687. <test name="vector_indexing_suite"/>
  2688. <test name="virtual_functions"/>
  2689. <toolset name="intel-7.1-linux"/>
  2690. <toolset name="intel-8.0-linux"/>
  2691. <note author="Aleksey Gurtovoy">
  2692. The library is <a href="http://article.gmane.org/gmane.comp.lib.boost.devel/110420">known to work</a>
  2693. in this configuration. The failures are due to configuration issues of
  2694. the particular testing environment these tests have been run in. The
  2695. regression runners and library developers are aware of the problem and
  2696. plan to fix it for the next release.
  2697. </note>
  2698. </mark-expected-failures>
  2699. <mark-expected-failures>
  2700. <test name="builtin_converters"/>
  2701. <test name="extract"/>
  2702. <test name="list"/>
  2703. <test name="operators"/>
  2704. <test name="pickle1"/>
  2705. <test name="pickle2"/>
  2706. <test name="pickle3"/>
  2707. <test name="pickle4"/>
  2708. <toolset name="gcc-3.4.2-linux"/>
  2709. <note author="Aleksey Gurtovoy">
  2710. The test is <a href="http://article.gmane.org/gmane.comp.lib.boost.devel/110671">known to work</a>
  2711. in this configuration. The failures are due to configuration issues of
  2712. the particular testing environment these tests have been run in.
  2713. </note>
  2714. </mark-expected-failures>
  2715. <mark-expected-failures>
  2716. <test name="pointer_vector"/>
  2717. <test name="polymorphism"/>
  2718. <toolset name="tru64cxx7*"/>
  2719. <toolset name="hp_cxx*"/>
  2720. <note author="Markus Schoepflin" refid="29"/>
  2721. </mark-expected-failures>
  2722. </library>
  2723. <!-- random -->
  2724. <library name="random">
  2725. <mark-unusable>
  2726. <toolset name="msvc"/>
  2727. <toolset name="vc-7_0"/>
  2728. <note author="B. Dawes" refid="10"/>
  2729. </mark-unusable>
  2730. <test name="random_test">
  2731. <mark-failure>
  2732. <toolset name="cw-8_3*"/>
  2733. <note author="B. Dawes" refid="3"/>
  2734. </mark-failure>
  2735. <mark-failure>
  2736. <toolset name="borland"/>
  2737. <toolset name="borland-5_6_4"/>
  2738. <note author="B. Dawes" refid="2"/>
  2739. </mark-failure>
  2740. <mark-failure>
  2741. <toolset name="intel-win32-*"/>
  2742. <note author="S. Slapeta" refid="1"/>
  2743. </mark-failure>
  2744. <mark-failure>
  2745. <toolset name="qcc-3.3.5-*"/>
  2746. <note author="Jim Douglas" date="13 Feb 06">
  2747. Test fails with ranlux*_O1 RNGs when saving and recalling the state due to a bug in the
  2748. double to string conversion. The problem has been reported to QNX as PR29252.
  2749. </note>
  2750. </mark-failure>
  2751. </test>
  2752. </library>
  2753. <!-- range -->
  2754. <library name="range">
  2755. <mark-unusable>
  2756. <toolset name="mipspro"/>
  2757. <toolset name="dmc-8_43-stlport-4_5_3"/>
  2758. <toolset name="gcc-2.95.3*"/>
  2759. <toolset name="sunpro-5_3-sunos"/>
  2760. </mark-unusable>
  2761. <mark-expected-failures>
  2762. <test name="array"/>
  2763. <toolset name="como-4_3_3*"/>
  2764. <toolset name="borland-5_6_4"/>
  2765. <note refid="27" author="Thorsten Ottosen"/>
  2766. </mark-expected-failures>
  2767. <mark-expected-failures>
  2768. <test name="iterator_range"/>
  2769. <toolset name="msvc-stlport"/>
  2770. <toolset name="vc-6_5-stlport"/>
  2771. <toolset name="tru64cxx65"/>
  2772. <note author="Thorsten Ottosen">
  2773. For most compilers this is due to problems
  2774. with built-in arrays (notably char arrays) and operator==()
  2775. and operator!=() for iterator_range. Thus, not using built-in arrays
  2776. fixes the problem.
  2777. For other compilers it is simply a bug in the standard library.
  2778. </note>
  2779. </mark-expected-failures>
  2780. <mark-expected-failures>
  2781. <test name="reversible_range"/>
  2782. <toolset name="tru64cxx65"/>
  2783. <note author="Thorsten Ottosen">
  2784. This test probably fails because it uses built-in arrays. So do expect these
  2785. functions to work in normal code.
  2786. </note>
  2787. </mark-expected-failures>
  2788. <mark-expected-failures>
  2789. <test name="string"/>
  2790. <toolset name="tru64cxx65"/>
  2791. <toolset name="borland-5_6_4"/>
  2792. <note author="Thorsten Ottosen">
  2793. The string functionality is expected to work if
  2794. the user employs std::string and stays away from built-in
  2795. arrays.
  2796. </note>
  2797. </mark-expected-failures>
  2798. <mark-expected-failures>
  2799. <test name="sub_range"/>
  2800. <toolset name="vc-8_0"/>
  2801. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  2802. <toolset name="msvc-stlport"/>
  2803. <toolset name="vc-6_5-stlport"/>
  2804. <toolset name="vc-7_0"/>
  2805. <toolset name="tru64cxx65"/>
  2806. <note refid="6" author="Thorsten Ottosen">
  2807. For most compilers this is due to problems
  2808. with built-in arrays (notably char arrays) and operator==()
  2809. and operator!=() for iterator_range. Thus, not using built-in arrays
  2810. fixes the problem.
  2811. </note>
  2812. </mark-expected-failures>
  2813. <mark-expected-failures>
  2814. <test name="sub_range"/>
  2815. <toolset name="cw-9_5-darwin"/>
  2816. <note author="Thorsten Ottosen">
  2817. At the time of release I couldn't figure out why this was failing.
  2818. Anyway, the failure is not very important; also, the well-definedness of
  2819. "singularity" of an iterator range is likely to change.
  2820. </note>
  2821. </mark-expected-failures>
  2822. </library>
  2823. <!-- regex -->
  2824. <library name="regex">
  2825. <test name="regex_token_iterator_eg_2">
  2826. <mark-failure>
  2827. <toolset name="msvc"/>
  2828. <toolset name="vc-6_5"/>
  2829. <note author="J. Maddock"/>
  2830. </mark-failure>
  2831. </test>
  2832. <test name="posix_api_check">
  2833. <mark-failure>
  2834. <toolset name="como-4_3_3-vc7*"/>
  2835. <note author="J. Maddock"/>
  2836. </mark-failure>
  2837. </test>
  2838. <test name="*_dll">
  2839. <mark-failure>
  2840. <toolset name="*como-4_3_3*"/>
  2841. <note author="J. Maddock">
  2842. This test requires features that are unsupported by Como:
  2843. use and building of dll's mainly.
  2844. </note>
  2845. </mark-failure>
  2846. </test>
  2847. <mark-expected-failures>
  2848. <test name="static_mutex_test"/>
  2849. <test name="grep"/>
  2850. <toolset name="*como-4_3_3*"/>
  2851. <note author="J. Maddock">
  2852. This test requires features that are unsupported by Como:
  2853. use and building of dll's mainly.
  2854. </note>
  2855. </mark-expected-failures>
  2856. <test name="concept_check">
  2857. <mark-failure>
  2858. <toolset name="vc-8_0"/>
  2859. <toolset name="sunpro-5_3-sunos"/>
  2860. <note author="John Maddock" refid="2"/>
  2861. </mark-failure>
  2862. <mark-failure>
  2863. <toolset name="tru64cxx*"/>
  2864. <toolset name="hp_cxx*"/>
  2865. <note author="Markus Schoepflin" refid="3"/>
  2866. </mark-failure>
  2867. </test>
  2868. <test name="grep">
  2869. <mark-failure>
  2870. <toolset name="gcc-2.95.3-linux"/>
  2871. <toolset name="sunpro-5_3-sunos"/>
  2872. <toolset name="msvc"/>
  2873. <toolset name="vc-6_5*"/>
  2874. <toolset name="vc-7_0"/>
  2875. <note author="John Maddock">
  2876. This test fails because a dependency (Boost.Program Options) doesn't build with this compiler.
  2877. </note>
  2878. </mark-failure>
  2879. </test>
  2880. <mark-expected-failures>
  2881. <test name="regex_regress"/>
  2882. <test name="regex_regress_dll"/>
  2883. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  2884. <note author="John Maddock" refid="29"/>
  2885. </mark-expected-failures>
  2886. <mark-expected-failures>
  2887. <test name="unicode_iterator_test"/>
  2888. <toolset name="borland-5_6_4"/>
  2889. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  2890. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  2891. <note author="John Maddock" refid="6"/>
  2892. </mark-expected-failures>
  2893. <mark-expected-failures>
  2894. <test name="regex_timer"/>
  2895. <toolset name="vc-6_5-stlport"/>
  2896. <note author="John Maddock">
  2897. Test fails due to unresilved externals from STLport: appears to be
  2898. an STLport bug. </note>
  2899. </mark-expected-failures>
  2900. </library>
  2901. <!-- signals -->
  2902. <library name="signals">
  2903. <mark-unusable>
  2904. <toolset name="sunpro-5_3-sunos"/>
  2905. </mark-unusable>
  2906. <mark-expected-failures>
  2907. <test name="dead_slot_test"/>
  2908. <test name="trackable_test"/>
  2909. <toolset name="*como-4_3_3*"/>
  2910. <toolset name="tru64cxx*"/>
  2911. <toolset name="hp_cxx*"/>
  2912. <note author="Markus Schoepflin" refid="2"/>
  2913. </mark-expected-failures>
  2914. <test name="signal_test">
  2915. <mark-failure>
  2916. <toolset name="cw-8_3*"/>
  2917. <note author="B. Dawes" refid="2"/>
  2918. </mark-failure>
  2919. <mark-failure>
  2920. <toolset name="borland"/>
  2921. <toolset name="borland-5_6_4"/>
  2922. <toolset name="msvc"/>
  2923. <toolset name="vc-6_5"/>
  2924. <toolset name="vc-7_0"/>
  2925. <note author="B. Dawes" refid="3"/>
  2926. </mark-failure>
  2927. </test>
  2928. </library>
  2929. <!-- statechart -->
  2930. <library name="statechart">
  2931. <mark-unusable>
  2932. <toolset name="borland-5*"/>
  2933. <toolset name="msvc"/>
  2934. <toolset name="msvc-6.5*"/>
  2935. <toolset name="msvc-7.0*"/>
  2936. <toolset name="vc-6_5*"/>
  2937. <toolset name="vc7*"/>
  2938. <toolset name="vc-7_0*"/>
  2939. <toolset name="dmc-8*"/>
  2940. <toolset name="sunpro-5*"/>
  2941. <toolset name="tru64cxx65*"/>
  2942. <toolset name="cw-8*"/>
  2943. <toolset name="gcc-2*"/>
  2944. <note author="Andreas Huber" refid="17"/>
  2945. </mark-unusable>
  2946. <mark-expected-failures>
  2947. <test name="DllTestNormal"/>
  2948. <toolset name="gcc-3_3-darwin"/>
  2949. <toolset name="mingw*"/>
  2950. <toolset name="tru64cxx*"/>
  2951. <toolset name="hp_cxx*"/>
  2952. <note author="Andreas Huber">
  2953. A runtime failure of this test indicates that this platform
  2954. <b>dynamically</b> links code in a manner such that under
  2955. certain circumstances more than one instance of a
  2956. header-defined static class member can exist at runtime.
  2957. See <a href="http://tinyurl.com/d2yng">here</a> for more
  2958. information.
  2959. </note>
  2960. </mark-expected-failures>
  2961. <mark-expected-failures>
  2962. <test name="LibTestNormal"/>
  2963. <toolset name="tru64cxx71*"/>
  2964. <toolset name="hp_cxx*"/>
  2965. <note author="Andreas Huber">
  2966. A runtime failure of this test indicates that this platform
  2967. <b>statically</b> links code in a manner such that under
  2968. certain circumstances more than one instance of a
  2969. header-defined static class member can exist at runtime.
  2970. See <a href="http://tinyurl.com/d2yng">here</a> for more
  2971. information.
  2972. </note>
  2973. </mark-expected-failures>
  2974. <mark-expected-failures reason="?">
  2975. <test name="CustomReactionTest*"/>
  2976. <test name="TransitionTest*"/>
  2977. <test name="DllTest*"/>
  2978. <toolset name="cw-9*"/>
  2979. <note author="Andreas Huber" refid="29"/>
  2980. </mark-expected-failures>
  2981. <mark-expected-failures reason="?">
  2982. <test name="LibTest*"/>
  2983. <toolset name="cw-9_*"/>
  2984. <note author="Andreas Huber" refid="29"/>
  2985. </mark-expected-failures>
  2986. <mark-expected-failures reason="?">
  2987. <test name="CustomReactionTest*"/>
  2988. <test name="FifoSchedulerTest*"/>
  2989. <test name="TransitionTest*"/>
  2990. <toolset name="tru64cxx71*"/>
  2991. <toolset name="hp_cxx*"/>
  2992. <note author="Andreas Huber" refid="29"/>
  2993. </mark-expected-failures>
  2994. </library>
  2995. <!-- static_assert -->
  2996. <library name="static_assert">
  2997. <test name="static_assert_example_2">
  2998. <mark-failure>
  2999. <toolset name="sunpro-5_3-sunos"/>
  3000. <note author="J. Maddock" refid="4"/>
  3001. </mark-failure>
  3002. </test>
  3003. </library>
  3004. <!-- test -->
  3005. <library name="test">
  3006. <mark-expected-failures>
  3007. <test name="ifstream_line_iterator_test"/>
  3008. <toolset name="sunpro*"/>
  3009. <note author="Gennadiy Rozental" refid="2"/>
  3010. </mark-expected-failures>
  3011. <mark-expected-failures>
  3012. <test name="custom_exception_test"/>
  3013. <toolset name="msvc"/>
  3014. <toolset name="vc-6_5*"/>
  3015. <note author="Gennadiy Rozental" refid="2"/>
  3016. </mark-expected-failures>
  3017. <mark-expected-failures>
  3018. <test name="errors_handling_test"/>
  3019. <toolset name="*como-4_3_3*"/>
  3020. <note author="B. Dawes" refid="3"/>
  3021. </mark-expected-failures>
  3022. <mark-expected-failures>
  3023. <test name="token_iterator_test"/>
  3024. <toolset name="msvc"/>
  3025. <toolset name="vc-6_5*"/>
  3026. <toolset name="iw-7_1-vc6"/>
  3027. <toolset name="vc-7_0"/>
  3028. <toolset name="vc-7_0-stlport"/>
  3029. <toolset name="gcc-2.95.3-linux"/>
  3030. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  3031. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  3032. <toolset name="tru64cxx65-042"/>
  3033. <toolset name="sunpro*"/>
  3034. <toolset name="borland*"/>
  3035. <note author="Gennadiy Rozental" refid="3"/>
  3036. </mark-expected-failures>
  3037. <mark-expected-failures>
  3038. <test name="token_iterator_test"/>
  3039. <toolset name="qcc-3.3.5-gpp"/>
  3040. <note author="Jim Douglas" date="14 Feb 06" refid="36"/>
  3041. </mark-expected-failures>
  3042. <mark-expected-failures>
  3043. <test name="test_fp_comparisons"/>
  3044. <toolset name="msvc"/>
  3045. <toolset name="vc-6_5*"/>
  3046. <toolset name="vc-7_0"/>
  3047. <toolset name="vc-7_0-stlport"/>
  3048. <toolset name="borland-5_6_4"/>
  3049. <note author="Gennadiy Rozental" refid="3"/>
  3050. </mark-expected-failures>
  3051. <mark-expected-failures reason="?">
  3052. <test name="basic_cstring_test"/>
  3053. <toolset name="gcc-2.95.3-linux"/>
  3054. <note refid="29"/>
  3055. </mark-expected-failures>
  3056. <mark-expected-failures>
  3057. <test name="errors_handling_test"/>
  3058. <test name="test_tools_test"/>
  3059. <toolset name="cw-9_5-darwin"/>
  3060. <note refid="29" author="Doug Gregor"/>
  3061. </mark-expected-failures>
  3062. <mark-expected-failures>
  3063. <test name="errors_handling_test"/>
  3064. <test name="test_tools_test"/>
  3065. <toolset name="cw-9_4"/>
  3066. <note refid="29" author="Doug Gregor"/>
  3067. </mark-expected-failures>
  3068. </library>
  3069. <!-- thread -->
  3070. <library name="thread">
  3071. <mark-unusable>
  3072. <toolset name="*como-4_3_3*"/>
  3073. <note author="B. Dawes" refid="10"/>
  3074. </mark-unusable>
  3075. <test name="test_mutex">
  3076. <mark-failure>
  3077. <toolset name="vc-7_0"/>
  3078. <note author="B. Dawes" refid="0"/>
  3079. <note author="B. Dawes" refid="6"/>
  3080. </mark-failure>
  3081. </test>
  3082. <test name="test_tss_lib">
  3083. <mark-failure>
  3084. <toolset name="mingw*"/>
  3085. <toolset name="borland-5_6_4"/>
  3086. <toolset name="cw-*"/>
  3087. <toolset name="vc-7_0"/>
  3088. <note author="Aleksey Gurtovoy" date="19 Sep 2004">
  3089. This functionality has not been implemented yet. The library
  3090. developers plan to implement it for the next release.
  3091. </note>
  3092. </mark-failure>
  3093. </test>
  3094. <mark-expected-failures>
  3095. <test name="*_lib"/>
  3096. <toolset name="intel-8.0-linux*"/>
  3097. <note author="Aleksey Gurtovoy">
  3098. This failure is caused by a conflict between the compiler
  3099. and the testing environment: the tests are run on a platform with
  3100. <i>too recent</i> version of glibc, which is not currently
  3101. supported by the compiler vendor (Intel).
  3102. If you are having the same problem and <i>really</i> want to make
  3103. things work, renaming <code>strol</code> symbol in the
  3104. compiler's static runtime library (<code>libcprts.a</code>) to
  3105. something else is known to resolve the issue.
  3106. </note>
  3107. </mark-expected-failures>
  3108. <mark-expected-failures>
  3109. <test name="test_barrier_lib"/>
  3110. <toolset name="vc-8_0"/>
  3111. <note author="Aleksey Gurtovoy" refid="6"/>
  3112. </mark-expected-failures>
  3113. <mark-expected-failures>
  3114. <test name="test_thread"/>
  3115. <toolset name="vc-7_1"/>
  3116. <note author="Aleksey Gurtovoy" refid="6"/>
  3117. </mark-expected-failures>
  3118. <mark-expected-failures reason="?">
  3119. <test name="*_lib"/>
  3120. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  3121. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  3122. <note author="Aleksey Gurtovoy" refid="29"/>
  3123. </mark-expected-failures>
  3124. <mark-expected-failures>
  3125. <test name="test_mutex"/>
  3126. <test name="test_mutex_lib"/>
  3127. <toolset name="qcc-3.3*"/>
  3128. <note author="Jim Douglas" date="13 Feb 06" refid="16"/>
  3129. </mark-expected-failures>
  3130. </library>
  3131. <!-- tuple -->
  3132. <library name="tuple">
  3133. <mark-unusable>
  3134. <toolset name="sunpro-5_3-sunos"/>
  3135. </mark-unusable>
  3136. <test name="io_test">
  3137. <toolset name="intel-win32"/>
  3138. <note author="B. Dawes" refid="3"/>
  3139. </test>
  3140. </library>
  3141. <!-- type_traits -->
  3142. <library name="type_traits">
  3143. <mark-expected-failures>
  3144. <test name="function_traits_test"/>
  3145. <test name="remove_bounds_test"/>
  3146. <test name="remove_const_test"/>
  3147. <test name="remove_cv_test"/>
  3148. <test name="remove_pointer_test"/>
  3149. <test name="remove_reference_test"/>
  3150. <test name="remove_volatile_test"/>
  3151. <test name="decay_test"/>
  3152. <test name="extent_test"/>
  3153. <test name="remove_extent_test"/>
  3154. <test name="remove_all_extents_test"/>
  3155. <test name="rank_test"/>
  3156. <test name="is_unsigned_test"/>
  3157. <toolset name="msvc"/>
  3158. <toolset name="vc-6_5*"/>
  3159. <toolset name="vc-7_0"/>
  3160. <note author="Aleksey Gurtovoy">
  3161. This failure is caused by the lack of compiler support for class template
  3162. partial specialization. A limited subset of the tested functionality is
  3163. available on the compiler through a user-side workaround (see
  3164. <a href="http://www.boost.org/libs/type_traits/index.html#transformations">
  3165. http://www.boost.org/libs/type_traits/index.html#transformations</a> for
  3166. details).
  3167. </note>
  3168. </mark-expected-failures>
  3169. <mark-expected-failures>
  3170. <test name="tricky_incomplete_type_test"/>
  3171. <test name="decay_test"/>
  3172. <test name="extent_test"/>
  3173. <test name="is_base_of_test"/>
  3174. <test name="rank_test"/>
  3175. <test name="remove_all_extents_test"/>
  3176. <test name="remove_extent_test"/>
  3177. <test name="tricky_function_type_test"/>
  3178. <toolset name="borland-5_6_4"/>
  3179. <note author="John Maddock" refid="2"/>
  3180. </mark-expected-failures>
  3181. <test name="tricky_is_enum_test">
  3182. <mark-failure>
  3183. <toolset name="borland-5_6_4"/>
  3184. <toolset name="msvc"/>
  3185. <toolset name="vc-6_5*"/>
  3186. <toolset name="gcc-2.95.3-*"/>
  3187. </mark-failure>
  3188. </test>
  3189. <test name="tricky_incomplete_type_test">
  3190. <mark-failure>
  3191. <toolset name="iw-7_1*"/>
  3192. <note author="John Maddock" refid="2"/>
  3193. </mark-failure>
  3194. </test>
  3195. <test name="is_abstract_test">
  3196. <mark-failure>
  3197. <toolset name="borland-5_6_4"/>
  3198. <toolset name="cw-8_3*"/>
  3199. <toolset name="cw-9_3*"/>
  3200. <toolset name="cw-9_4*"/>
  3201. <toolset name="cw-9_5*"/>
  3202. <toolset name="cw-9.4"/>
  3203. <toolset name="cw-9.5"/>
  3204. <toolset name="msvc"/>
  3205. <toolset name="vc-6_5*"/>
  3206. <toolset name="vc-7_0"/>
  3207. <toolset name="mingw-3_3*"/>
  3208. <toolset name="gcc-2*"/>
  3209. <toolset name="gcc-3.2*"/>
  3210. <toolset name="gcc-3.3*"/>
  3211. <toolset name="gcc-3_3*"/>
  3212. <toolset name="qcc-3.3*"/>
  3213. <toolset name="sunpro-5_3-sunos"/>
  3214. <toolset name="tru64cxx65-042"/>
  3215. <toolset name="darwin"/>
  3216. <toolset name="mingw"/>
  3217. <note author="Aleksey Gurtovoy">
  3218. This functionality is available only on compilers that implement C++ Core Language
  3219. <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#337">Defect Report 337</a>.
  3220. </note>
  3221. </mark-failure>
  3222. </test>
  3223. <mark-expected-failures>
  3224. <test name="is_polymorphic_test"/>
  3225. <toolset name="gcc-2.95.3-stlport-*"/>
  3226. <note author="Doug Gregor" refid="3"/>
  3227. </mark-expected-failures>
  3228. <mark-expected-failures>
  3229. <test name="decay_test"/>
  3230. <test name="extent_test"/>
  3231. <test name="has_nothrow_assign_test"/>
  3232. <test name="has_nothrow_constr_test"/>
  3233. <test name="has_nothrow_copy_test"/>
  3234. <test name="has_trivial_assign_test"/>
  3235. <test name="has_trivial_constr_test"/>
  3236. <test name="has_trivial_copy_test"/>
  3237. <test name="has_trivial_destructor_test"/>
  3238. <test name="is_array_test"/>
  3239. <test name="is_base_and_derived_test"/>
  3240. <test name="is_base_of_test"/>
  3241. <test name="is_class_test"/>
  3242. <test name="is_convertible_test"/>
  3243. <test name="is_object_test"/>
  3244. <test name="is_pod_test"/>
  3245. <test name="is_polymorphic_test"/>
  3246. <test name="rank_test"/>
  3247. <test name="remove_all_extents_test"/>
  3248. <test name="remove_bounds_test"/>
  3249. <test name="remove_extent_test"/>
  3250. <toolset name="sunpro-5_3-sunos"/>
  3251. <note author="John Maddock">
  3252. The Type Traits library is broken when used with Sunpro-5.3 and the
  3253. argument to the template is an array or function type. Most other argument types
  3254. do work as expected: in other words the functionality is limited
  3255. with this compiler, but not so much as to render the library unuseable.
  3256. </note>
  3257. </mark-expected-failures>
  3258. <mark-expected-failures>
  3259. <test name="is_empty_test"/>
  3260. <test name="is_function_test"/>
  3261. <test name="is_member_func_test"/>
  3262. <test name="is_member_obj_test"/>
  3263. <test name="is_reference_test"/>
  3264. <test name="tricky_function_type_test"/>
  3265. <test name="tricky_incomplete_type_test"/>
  3266. <test name="tricky_is_enum_test"/>
  3267. <toolset name="sunpro-5_3-sunos"/>
  3268. <note author="John Maddock" refid="2"/>
  3269. </mark-expected-failures>
  3270. <mark-expected-failures>
  3271. <test name="tricky_function_type_test"/>
  3272. <test name="is_const_test"/>
  3273. <test name="is_volatile_test"/>
  3274. <test name="is_convertible_test"/>
  3275. <toolset name="gcc-2*"/>
  3276. <note author="John Maddock" refid="2"/>
  3277. </mark-expected-failures>
  3278. <mark-expected-failures>
  3279. <test name="aligned_storage_test"/>
  3280. <toolset name="cw-8_3"/>
  3281. <note author="John Maddock">
  3282. Older versions of MWCW incorrectly align pointers to member functions
  3283. (they use 12-byte boundaries, rather than a power-of-2 boundary),
  3284. leading to alignment_of / aligned_storage
  3285. to fail with these types on this compiler.
  3286. </note>
  3287. </mark-expected-failures>
  3288. </library>
  3289. <!-- tr1 -->
  3290. <library name="tr1">
  3291. <mark-unusable>
  3292. <toolset name="msvc"/>
  3293. <toolset name="VC6*"/>
  3294. <note author="John Maddock">
  3295. VC6 has a buggy using declaration syntax which
  3296. basically makes it impossible to implement the
  3297. namespace forwarding that this library relies upon.
  3298. See KB article 263630 here: http://support.microsoft.com/default.aspx?scid=kb;en-us;263630
  3299. </note>
  3300. </mark-unusable>
  3301. <mark-unusable>
  3302. <toolset name="cw-*"/>
  3303. <note author="John Maddock">
  3304. Metrowerks Codeworrier has partial TR1 support built in
  3305. which conflicts with this implementation. Porting to this
  3306. compiler is almost certainly possible, but will require some
  3307. work by someone who has this compiler.
  3308. </note>
  3309. </mark-unusable>
  3310. <mark-expected-failures>
  3311. <test name="test_array_tricky"/>
  3312. <test name="test_mem_fn_tricky"/>
  3313. <test name="test_bind_tricky"/>
  3314. <test name="test_reference_wrapper_tricky"/>
  3315. <test name="test_function_tricky"/>
  3316. <test name="std_test_array_tricky"/>
  3317. <test name="std_test_mem_fn_tricky"/>
  3318. <test name="std_test_bind_tricky"/>
  3319. <test name="std_test_reference_wrapper_tricky"/>
  3320. <test name="std_test_function_tricky"/>
  3321. <test name="std_test_tuple_tricky"/>
  3322. <toolset name="*"/>
  3323. <note author="John Maddock">
  3324. These tests test features that are not supported in the
  3325. current Boost implementations of TR1 components, they will
  3326. currently fail on all compilers, unless that compiler has
  3327. native TR1 support.
  3328. </note>
  3329. </mark-expected-failures>
  3330. <mark-expected-failures>
  3331. <test name="test_regex"/>
  3332. <test name="std_test_regex"/>
  3333. <test name="test_hash"/>
  3334. <test name="std_test_hash"/>
  3335. <toolset name="mingw*"/>
  3336. <toolset name="qcc-3.3.5-gpp*"/>
  3337. <toolset name="gcc-2*"/>
  3338. <note author="John Maddock">
  3339. These tests fail on this platform due to a lack of
  3340. wide character support.
  3341. </note>
  3342. </mark-expected-failures>
  3343. <mark-expected-failures>
  3344. <test name="test_array"/>
  3345. <test name="std_test_array"/>
  3346. <test name="test_complex"/>
  3347. <test name="std_test_complex"/>
  3348. <test name="test_function"/>
  3349. <test name="std_test_function"/>
  3350. <test name="test_mem_fn"/>
  3351. <test name="std_test_mem_fn"/>
  3352. <test name="test_random"/>
  3353. <test name="std_test_random"/>
  3354. <test name="test_regex"/>
  3355. <test name="std_test_regex"/>
  3356. <test name="test_result_of"/>
  3357. <test name="std_test_result_of"/>
  3358. <test name="test_shared_ptr"/>
  3359. <test name="std_test_shared_ptr"/>
  3360. <test name="test_tr1_include"/>
  3361. <test name="std_test_tr1_include"/>
  3362. <test name="test_tuple"/>
  3363. <test name="std_test_tuple"/>
  3364. <test name="test_type_traits"/>
  3365. <test name="std_test_type_traits"/>
  3366. <test name="run_complex_overloads"/>
  3367. <test name="std_run_complex_overloads"/>
  3368. <test name="run_random"/>
  3369. <test name="std_run_random"/>
  3370. <test name="test_tuple_tricky"/>
  3371. <test name="tr1_add_const_test"/>
  3372. <test name="tr1_add_cv_test"/>
  3373. <test name="tr1_add_pointer_test"/>
  3374. <test name="tr1_add_reference_test"/>
  3375. <test name="tr1_add_volatile_test"/>
  3376. <test name="tr1_aligned_storage_test"/>
  3377. <test name="tr1_alignment_of_test"/>
  3378. <test name="tr1_has_nothrow_assign_test"/>
  3379. <test name="tr1_has_nothrow_constr_test"/>
  3380. <test name="tr1_has_nothrow_copy_test"/>
  3381. <test name="tr1_has_trivial_assign_test"/>
  3382. <test name="tr1_has_trivial_constr_test"/>
  3383. <test name="tr1_has_trivial_copy_test"/>
  3384. <test name="tr1_has_trivial_destructor_test"/>
  3385. <test name="tr1_has_virtual_destructor_test"/>
  3386. <test name="tr1_is_arithmetic_test"/>
  3387. <test name="tr1_is_array_test"/>
  3388. <test name="tr1_is_class_test"/>
  3389. <test name="tr1_is_compound_test"/>
  3390. <test name="tr1_is_const_test"/>
  3391. <test name="tr1_is_convertible_test"/>
  3392. <test name="tr1_is_empty_test"/>
  3393. <test name="tr1_is_enum_test"/>
  3394. <test name="tr1_is_floating_point_test"/>
  3395. <test name="tr1_is_function_test"/>
  3396. <test name="tr1_is_fundamental_test"/>
  3397. <test name="tr1_is_integral_test"/>
  3398. <test name="tr1_is_member_func_test"/>
  3399. <test name="tr1_is_member_obj_test"/>
  3400. <test name="tr1_is_member_pointer_test"/>
  3401. <test name="tr1_is_object_test"/>
  3402. <test name="tr1_is_pod_test"/>
  3403. <test name="tr1_is_pointer_test"/>
  3404. <test name="tr1_is_polymorphic_test"/>
  3405. <test name="tr1_is_reference_test"/>
  3406. <test name="tr1_is_same_test"/>
  3407. <test name="tr1_is_scalar_test"/>
  3408. <test name="tr1_is_signed_test"/>
  3409. <test name="tr1_is_union_test"/>
  3410. <test name="tr1_is_unsigned_test"/>
  3411. <test name="tr1_is_void_test"/>
  3412. <test name="tr1_is_volatile_test"/>
  3413. <test name="tr1_remove_const_test"/>
  3414. <test name="tr1_remove_cv_test"/>
  3415. <test name="tr1_remove_pointer_test"/>
  3416. <test name="tr1_remove_reference_test"/>
  3417. <test name="tr1_remove_volatile_test"/>
  3418. <test name="tr1_tricky_abstract_type_test"/>
  3419. <test name="tr1_tricky_add_pointer_test"/>
  3420. <test name="tr1_tricky_partial_spec_test"/>
  3421. <toolset name="borland*"/>
  3422. <note author="John Maddock">
  3423. Support for Borland C++ in the various TR1 libraries is pretty
  3424. poor (due to numerous compiler bugs sadly). The TR1 concept
  3425. checks are *very* strict, and are expected to fail with this
  3426. compiler. In addition most of the type_traits tests fail
  3427. whenever debugging support is turned on with an internal
  3428. compiler error. More conservative uses are more likely to succeed
  3429. with this compiler however.
  3430. </note>
  3431. </mark-expected-failures>
  3432. <mark-expected-failures>
  3433. <test name="std_test_bind"/>
  3434. <test name="test_bind"/>
  3435. <toolset name="gcc-4_0-darwin"/>
  3436. <note author="John Maddock">
  3437. These tests fail on this platform due to a recuring GCC bug.
  3438. </note>
  3439. </mark-expected-failures>
  3440. <mark-expected-failures>
  3441. <test name="test_type_traits"/>
  3442. <test name="std_test_type_traits"/>
  3443. <test name="tr1_is_abstract_test"/>
  3444. <toolset name="gcc-3.3.*"/>
  3445. <toolset name="gcc-3_3*"/>
  3446. <toolset name="qcc-3.3.*"/>
  3447. <toolset name="gcc-3.2*"/>
  3448. <note author="John Maddock">
  3449. These tests fail due to a known compiler bug
  3450. that is fixed in more recent releases. Users are
  3451. very unlikely to encounter this as a real problem
  3452. in practice.
  3453. </note>
  3454. </mark-expected-failures>
  3455. <mark-expected-failures>
  3456. <test name="test_regex"/>
  3457. <test name="std_test_regex"/>
  3458. <test name="test_complex"/>
  3459. <test name="std_test_complex"/>
  3460. <test name="run_complex_overloads"/>
  3461. <test name="std_run_complex_overloads"/>
  3462. <toolset name="gcc-2*"/>
  3463. <note author="John Maddock">
  3464. These tests fail due to a known compiler bug
  3465. that is fixed in more recent releases. Users are
  3466. very unlikely to encounter this as a real problem
  3467. in practice.
  3468. </note>
  3469. </mark-expected-failures>
  3470. <mark-expected-failures>
  3471. <test name="test_type_traits"/>
  3472. <test name="std_test_type_traits"/>
  3473. <test name="test_result_of"/>
  3474. <test name="std_test_result_of"/>
  3475. <test name="tr1_is_abstract_test"/>
  3476. <test name="test_ios"/>
  3477. <test name="test_istream"/>
  3478. <test name="test_ostream"/>
  3479. <test name="test_streambuf"/>
  3480. <test name="test_limits"/>
  3481. <test name="test_locale"/>
  3482. <test name="test_ios_std_header"/>
  3483. <test name="test_istream_std_header"/>
  3484. <test name="test_limits_std_header"/>
  3485. <test name="test_locale_std_header"/>
  3486. <test name="test_ostream_std_header"/>
  3487. <test name="test_streambuf_std_header"/>
  3488. <toolset name="gcc-2*"/>
  3489. <note author="John Maddock">
  3490. These tests fail due to a known compiler bug
  3491. that is fixed in more recent releases. This
  3492. functionality may not be usable with this compiler.
  3493. </note>
  3494. </mark-expected-failures>
  3495. <mark-expected-failures>
  3496. <test name="run_complex_overloads"/>
  3497. <test name="std_run_complex_overloads"/>
  3498. <test name="std_test_complex"/>
  3499. <test name="test_complex"/>
  3500. <toolset name="qcc-3.3.5-gpp"/>
  3501. <note author="John Maddock">
  3502. These tests fail due to a known stdlib bug
  3503. that has been reported to the vendor.
  3504. </note>
  3505. </mark-expected-failures>
  3506. <mark-expected-failures>
  3507. <test name="tr1_function_traits_test"/>
  3508. <test name="tr1_remove_bounds_test"/>
  3509. <test name="tr1_remove_const_test"/>
  3510. <test name="tr1_remove_cv_test"/>
  3511. <test name="tr1_remove_pointer_test"/>
  3512. <test name="tr1_remove_reference_test"/>
  3513. <test name="tr1_remove_volatile_test"/>
  3514. <test name="tr1_decay_test"/>
  3515. <test name="tr1_extent_test"/>
  3516. <test name="tr1_remove_extent_test"/>
  3517. <test name="tr1_remove_all_extents_test"/>
  3518. <test name="tr1_rank_test"/>
  3519. <test name="tr1_is_unsigned_test"/>
  3520. <toolset name="msvc"/>
  3521. <toolset name="vc-6_5*"/>
  3522. <toolset name="vc-7_0"/>
  3523. <note author="Aleksey Gurtovoy">
  3524. This failure is caused by the lack of compiler support for class template
  3525. partial specialization. A limited subset of the tested functionality is
  3526. available on the compiler through a user-side workaround (see
  3527. <a href="http://www.boost.org/libs/type_traits/index.html#transformations">
  3528. http://www.boost.org/libs/type_traits/index.html#transformations</a> for
  3529. details).
  3530. </note>
  3531. </mark-expected-failures>
  3532. <mark-expected-failures>
  3533. <test name="tr1_tricky_incomplete_type_test"/>
  3534. <test name="tr1_decay_test"/>
  3535. <test name="tr1_extent_test"/>
  3536. <test name="tr1_is_base_of_test"/>
  3537. <test name="tr1_rank_test"/>
  3538. <test name="tr1_remove_all_extents_test"/>
  3539. <test name="tr1_remove_extent_test"/>
  3540. <test name="tr1_tricky_function_type_test"/>
  3541. <toolset name="borland-5_6_4"/>
  3542. <note author="John Maddock" refid="2"/>
  3543. </mark-expected-failures>
  3544. <test name="tr1_tricky_is_enum_test">
  3545. <mark-failure>
  3546. <toolset name="borland-5_6_4"/>
  3547. <toolset name="msvc"/>
  3548. <toolset name="vc-6_5*"/>
  3549. <toolset name="gcc-2.95.3-*"/>
  3550. </mark-failure>
  3551. </test>
  3552. <test name="tr1_tricky_incomplete_type_test">
  3553. <mark-failure>
  3554. <toolset name="iw-7_1*"/>
  3555. <note author="John Maddock" refid="2"/>
  3556. </mark-failure>
  3557. </test>
  3558. <test name="tr1_is_abstract_test">
  3559. <mark-failure>
  3560. <toolset name="borland-5_6_4"/>
  3561. <toolset name="cw-8_3*"/>
  3562. <toolset name="cw-9_3*"/>
  3563. <toolset name="cw-9_4*"/>
  3564. <toolset name="cw-9_5*"/>
  3565. <toolset name="msvc"/>
  3566. <toolset name="vc-6_5*"/>
  3567. <toolset name="vc-7_0"/>
  3568. <toolset name="mingw-3_3*"/>
  3569. <toolset name="gcc-2*"/>
  3570. <toolset name="gcc-3.2*"/>
  3571. <toolset name="gcc-3.3*"/>
  3572. <toolset name="gcc-3_3*"/>
  3573. <toolset name="sunpro-5_3-sunos"/>
  3574. <toolset name="tru64cxx65-042"/>
  3575. <toolset name="darwin"/>
  3576. <toolset name="mingw"/>
  3577. <note author="Aleksey Gurtovoy">
  3578. This functionality is available only on compilers that implement C++ Core Language
  3579. <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#337">Defect Report 337</a>.
  3580. </note>
  3581. </mark-failure>
  3582. </test>
  3583. <mark-expected-failures>
  3584. <test name="tr1_is_polymorphic_test"/>
  3585. <toolset name="gcc-2.95.3-stlport-*"/>
  3586. <note author="Doug Gregor" refid="3"/>
  3587. </mark-expected-failures>
  3588. <mark-expected-failures>
  3589. <test name="tr1_decay_test"/>
  3590. <test name="tr1_extent_test"/>
  3591. <test name="tr1_has_nothrow_assign_test"/>
  3592. <test name="tr1_has_nothrow_constr_test"/>
  3593. <test name="tr1_has_nothrow_copy_test"/>
  3594. <test name="tr1_has_trivial_assign_test"/>
  3595. <test name="tr1_has_trivial_constr_test"/>
  3596. <test name="tr1_has_trivial_copy_test"/>
  3597. <test name="tr1_has_trivial_destructor_test"/>
  3598. <test name="tr1_is_array_test"/>
  3599. <test name="tr1_is_base_and_derived_test"/>
  3600. <test name="tr1_is_base_of_test"/>
  3601. <test name="tr1_is_class_test"/>
  3602. <test name="tr1_is_convertible_test"/>
  3603. <test name="tr1_is_object_test"/>
  3604. <test name="tr1_is_pod_test"/>
  3605. <test name="tr1_is_polymorphic_test"/>
  3606. <test name="tr1_rank_test"/>
  3607. <test name="tr1_remove_all_extents_test"/>
  3608. <test name="tr1_remove_bounds_test"/>
  3609. <test name="tr1_remove_extent_test"/>
  3610. <toolset name="sunpro-5_3-sunos"/>
  3611. <note author="John Maddock">
  3612. The Type Traits library is broken when used with Sunpro-5.3 and the
  3613. argument to the template is an array or function type. Most other argument types
  3614. do work as expected: in other words the functionality is limited
  3615. with this compiler, but not so much as to render the library unuseable.
  3616. </note>
  3617. </mark-expected-failures>
  3618. <mark-expected-failures>
  3619. <test name="tr1_is_empty_test"/>
  3620. <test name="tr1_is_function_test"/>
  3621. <test name="tr1_is_member_func_test"/>
  3622. <test name="tr1_is_member_obj_test"/>
  3623. <test name="tr1_is_reference_test"/>
  3624. <test name="tr1_tricky_function_type_test"/>
  3625. <test name="tr1_tricky_incomplete_type_test"/>
  3626. <test name="tr1_tricky_is_enum_test"/>
  3627. <toolset name="sunpro-5_3-sunos"/>
  3628. <note author="John Maddock" refid="2"/>
  3629. </mark-expected-failures>
  3630. <mark-expected-failures>
  3631. <test name="tr1_tricky_function_type_test"/>
  3632. <test name="tr1_is_const_test"/>
  3633. <test name="tr1_is_volatile_test"/>
  3634. <test name="tr1_is_convertible_test"/>
  3635. <toolset name="gcc-2*"/>
  3636. <note author="John Maddock" refid="2"/>
  3637. </mark-expected-failures>
  3638. <mark-expected-failures>
  3639. <test name="tr1_aligned_storage_test"/>
  3640. <toolset name="cw-8_3"/>
  3641. <note author="John Maddock">
  3642. Older versions of MWCW incorrectly align pointers to member functions
  3643. (they use 12-byte boundaries, rather than a power-of-2 boundary),
  3644. leading to alignment_of / aligned_storage
  3645. to fail with these types on this compiler.
  3646. </note>
  3647. </mark-expected-failures>
  3648. </library>
  3649. <!-- utility/enable_if -->
  3650. <library name="utility/enable_if">
  3651. <mark-unusable>
  3652. <toolset name="borland"/>
  3653. <toolset name="borland-5_6_4"/>
  3654. <toolset name="cw-8_3*"/>
  3655. <toolset name="msvc"/>
  3656. <toolset name="vc-6_5*"/>
  3657. <toolset name="vc-7_0"/>
  3658. <toolset name="gcc-2.95.3-*"/>
  3659. <note refid="3"/>
  3660. </mark-unusable>
  3661. <mark-expected-failures>
  3662. <test name="no_disambiguation"/>
  3663. <toolset name="gcc-3.2.*"/>
  3664. <note refid="3"/>
  3665. </mark-expected-failures>
  3666. </library>
  3667. <!-- utility -->
  3668. <library name="utility">
  3669. <test name="addressof_test">
  3670. <mark-failure>
  3671. <toolset name="sunpro-5_3-sunos"/>
  3672. <note author="D. Gregor" refid="3"/>
  3673. </mark-failure>
  3674. </test>
  3675. <test name="fun_out_iter_example">
  3676. <mark-failure>
  3677. <toolset name="como-win32"/>
  3678. <note author="B. Dawes" refid="4"/>
  3679. </mark-failure>
  3680. </test>
  3681. <test name="result_of_test">
  3682. <mark-failure>
  3683. <toolset name="borland-5*"/>
  3684. <toolset name="cw-8_3*"/>
  3685. <toolset name="msvc"/>
  3686. <toolset name="vc-6_5*"/>
  3687. <toolset name="vc-7_0"/>
  3688. <toolset name="gcc-2.95.3*"/>
  3689. <toolset name="sunpro-5_3-sunos"/>
  3690. <note refid="3" author="D. Gregor"/>
  3691. </mark-failure>
  3692. </test>
  3693. <mark-expected-failures>
  3694. <test name="value_init_test"/>
  3695. <toolset name="msvc"/>
  3696. <toolset name="vc-6_5*"/>
  3697. <toolset name="vc-7_0"/>
  3698. <note author="Aleksey Gurtovoy">
  3699. This failure is caused by a compiler bug (default-constructed scalar
  3700. types are not zero-initialized) that has been fixed in the latest
  3701. versions of the compiler (VC 7.1 and greater).
  3702. </note>
  3703. </mark-expected-failures>
  3704. </library>
  3705. <!-- variant -->
  3706. <library name="variant">
  3707. <mark-unusable>
  3708. <toolset name="mipspro"/>
  3709. <toolset name="sunpro-5_3-sunos"/>
  3710. <toolset name="tru64cxx65*"/>
  3711. <note refid="2"/>
  3712. </mark-unusable>
  3713. <test name="recursive_variant_test">
  3714. <mark-failure>
  3715. <toolset name="como-win32"/>
  3716. <toolset name="msvc"/>
  3717. <toolset name="vc-6_5*"/>
  3718. <toolset name="vc-7_0"/>
  3719. <note refid="3"/>
  3720. </mark-failure>
  3721. </test>
  3722. <mark-expected-failures>
  3723. <test name="recursive_variant_test"/>
  3724. <test name="variant_test1"/>
  3725. <test name="variant_test5"/>
  3726. <test name="variant_visit_test"/>
  3727. <toolset name="borland"/>
  3728. <toolset name="borland-5_6_4"/>
  3729. <note author="Aleksey Gurtovoy" refid="3"/>
  3730. </mark-expected-failures>
  3731. <test name="variant_reference_test">
  3732. <mark-failure>
  3733. <toolset name="cw-8_3*"/>
  3734. <toolset name="msvc"/>
  3735. <toolset name="vc-6_5*"/>
  3736. <toolset name="vc-7_0"/>
  3737. <note refid="3"/>
  3738. </mark-failure>
  3739. <mark-failure>
  3740. <toolset name="intel-win32"/>
  3741. <toolset name="iw-7_1*"/>
  3742. <toolset name="intel-7.1*"/>
  3743. <note refid="2"/>
  3744. </mark-failure>
  3745. </test>
  3746. </library>
  3747. <!-- wave -->
  3748. <library name="wave">
  3749. <mark-unusable>
  3750. <toolset name="msvc"/>
  3751. <toolset name="vc-6_5*"/>
  3752. <toolset name="sunpro-5_3-sunos"/>
  3753. <toolset name="borland-5_5_1"/>
  3754. <toolset name="borland-5_6_4"/>
  3755. <toolset name="gcc-2.95.3-linux"/>
  3756. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  3757. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  3758. <toolset name="tru64cxx65*"/>
  3759. <note refid="29"/>
  3760. </mark-unusable>
  3761. <mark-unusable>
  3762. <toolset name="vc-7_0"/>
  3763. <note>
  3764. This toolset isn't supported because of the used Spirit V1.8.x, which in turn is
  3765. not usable with this toolset.
  3766. </note>
  3767. </mark-unusable>
  3768. <mark-expected-failures>
  3769. <test name="testwave"/>
  3770. <!-- toolset name="cw-9_5-darwin"/ -->
  3771. <toolset name="cw-8*"/>
  3772. <note author="Rene Rivera" refid="29"/>
  3773. </mark-expected-failures>
  3774. <mark-expected-failures>
  3775. <test name="testwave"/>
  3776. <toolset name="gcc-3.2.3-linux"/>
  3777. <toolset name="gcc-3.3.6-linux"/>
  3778. <toolset name="gcc-3.3.6"/>
  3779. <note author="Hartmut Kaiser" refid="29"/>
  3780. </mark-expected-failures>
  3781. <mark-expected-failures>
  3782. <test name="testwave"/>
  3783. <toolset name="qcc-3.3.5_gpp"/>
  3784. <toolset name="qcc-3.3.5-gpp"/>
  3785. <note author="Hartmut Kaiser" refid="29"/>
  3786. </mark-expected-failures>
  3787. <mark-expected-failures>
  3788. <test name="testwave_dll"/>
  3789. <toolset name="mingw-3*"/>
  3790. <note author="Hartmut Kaiser" refid="29"/>
  3791. </mark-expected-failures>
  3792. </library>
  3793. <!-- xpressive -->
  3794. <library name="xpressive">
  3795. <mark-unusable>
  3796. <toolset name="gcc-2.95.3*"/>
  3797. <toolset name="msvc"/>
  3798. <toolset name="vc-6_5*"/>
  3799. <toolset name="vc-7_0"/>
  3800. <note author="Eric Niebler">
  3801. These compilers do not support class template partial
  3802. specialization.
  3803. </note>
  3804. </mark-unusable>
  3805. <mark-unusable>
  3806. <toolset name="borland-5_6_4"/>
  3807. <toolset name="borland-5_8_1"/>
  3808. <note author="Eric Niebler">
  3809. Boost.Fusion doesn't work on this compiler.
  3810. </note>
  3811. </mark-unusable>
  3812. <mark-unusable>
  3813. <toolset name="cw-8_3"/>
  3814. <note author="Eric Niebler">
  3815. This compiler doesn't support SFINAE / enable_if
  3816. </note>
  3817. </mark-unusable>
  3818. <mark-unusable>
  3819. <toolset name="dmc*"/>
  3820. <note author="Eric Niebler">
  3821. Digital Mars cannot seem to handle dependent default template parameters,
  3822. such as "template &lt; class T, bool B = is_foo &lt; T &gt; ::value &gt;"
  3823. </note>
  3824. </mark-unusable>
  3825. </library>
  3826. <!-- /////////////// Standard note definitions /////////////// -->
  3827. <note id="0">
  3828. This test fails only intermittently.
  3829. </note>
  3830. <note id="1">
  3831. The failure is caused by a problem in Boost code. The Boost developers is aware of
  3832. the problem and plan to fix it.
  3833. </note>
  3834. <note id="2">
  3835. The failure is caused by a compiler bug.
  3836. </note>
  3837. <note id="3">
  3838. The failure is caused by a compiler bug, which has been reported to the compiler
  3839. supplier (or is already known to them).
  3840. </note>
  3841. <note id="4">
  3842. The failure is caused by a standard library bug.
  3843. </note>
  3844. <note id="5">
  3845. The failure is caused by a standard library bug, which has been reported to the
  3846. standard library supplier (or is already known to them).
  3847. </note>
  3848. <note id="6">
  3849. The failure is probably caused by the test code, harness, or configuration. Thus
  3850. it may not affect users of the library.
  3851. </note>
  3852. <note id="9">
  3853. The failure is serious and likely to prevent all use of this Boost library with this compiler.
  3854. </note>
  3855. <note id="10">
  3856. The failure is serious and likely to prevent all use of this Boost library with this
  3857. compiler. The failure is caused by a compiler bug, which has been reported to the compiler
  3858. supplier (or is already known to them).
  3859. </note>
  3860. <note id="14">
  3861. The failure is caused by a platform API bug.
  3862. </note>
  3863. <note id="15">
  3864. The failure is caused by a platform API bug, which has been reported to the platform API
  3865. supplier (or is already known to them).
  3866. </note>
  3867. <note id="16">
  3868. The failure is not serious and will not affect most users. The library degrades gracefully.
  3869. </note>
  3870. <note id="17">
  3871. This compiler's bugs are not supported by the library.
  3872. </note>
  3873. <note id="18">
  3874. Locales missing or adequately supported by this compiler.
  3875. </note>
  3876. <note id="19">
  3877. Missing or inadequate wchar/wstring/wstream support for this compiler.
  3878. </note>
  3879. <note id="20">
  3880. No std iterator traits for this compiler.
  3881. </note>
  3882. <note id="21">
  3883. Library has limited input/output support due to compiler inadequacies.
  3884. </note>
  3885. <note id="22">
  3886. No high precision clock for this platform.
  3887. </note>
  3888. <note id="23">
  3889. A bug in standard library prevents passing std::set from DLL to
  3890. application. A fixed &lt;tree&gt; header is available from
  3891. http://www.dinkumware.com/vc_fixes.html.
  3892. </note>
  3893. <note id="24">
  3894. Although the documentation from the Comeau website would make it appear
  3895. that windows DLL's are supported using the --windows option, after some
  3896. experimentation we have been unsuccessful in making dll configurations
  3897. work correctly.
  3898. </note>
  3899. <note id="25">
  3900. The failure is caused by a runtime limitation. Locale support is only
  3901. available with the static linked variant of the runtime. Generally
  3902. the dynamic linked variant is required when building dynamic modules,
  3903. DLL, <code>so</code>, etc.
  3904. </note>
  3905. <note id="26">
  3906. This failure is caused by a compiler bug with no known workaround.
  3907. Patches are welcome!
  3908. </note>
  3909. <note id="27" >
  3910. This failure is caused by bugs in the standard library implementation and/or
  3911. bugs in the compiler.
  3912. </note>
  3913. <note id="28">
  3914. Unresearched failure, please contact library developers for more
  3915. information about possible causes.
  3916. </note>
  3917. <note id="29">
  3918. The test fails due to unresearched issues. The library
  3919. developers are aware of this failure, but need help with
  3920. investigating/addressing it for future releases.
  3921. </note>
  3922. <note id="30">
  3923. The support for this deficient compiler will be dropped starting
  3924. from Boost 1.33.0 release. Please use one of the previous Boost
  3925. releases if you need the library to work on this compiler.
  3926. </note>
  3927. <note id="31">
  3928. This failure is caused by compiler bugs or limitations. Some advanced
  3929. or esoteric library features may be unavailable or only partially available.
  3930. This does not impact most common uses of the library.
  3931. </note>
  3932. <note id="32">
  3933. This failure is caused by a compiler bug. Certain code constructs that should
  3934. fail compilation are accepted by the compiler. This can mask some programming
  3935. errors, but does not impact the usability of the library.
  3936. </note>
  3937. <note id="33">
  3938. The failures are caused by the wrong handling of the
  3939. <code>std::internal</code> flag in the iostreams implementation of the
  3940. standard library used on that compiler/platform combo. Apart from that,
  3941. the format library works as expected.
  3942. </note>
  3943. <note id="34">
  3944. The failures are caused by the fact that the iword and pword arrays seem
  3945. to share the same memory area in the iostreams implementation of the
  3946. standard library used on that compiler/platform combo. As long as you
  3947. stay clear of iword and pword, the library should work ok.
  3948. </note>
  3949. <note id="35">
  3950. This failure occurs only when using shared libraries for this
  3951. compiler and platform, although the same programs should work
  3952. properly when using static libraries. This problem has not
  3953. been researched.
  3954. </note>
  3955. <note id="36">
  3956. Wide character support is disabled in the GNU Standard C++ library as
  3957. supplied on the QNX Neutrino version 6.3.0 distribution.
  3958. </note>
  3959. </explicit-failures-markup>
粤ICP备19079148号