explicit-failures-markup.xml 195 KB

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