explicit-failures-markup.xml 195 KB

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