explicit-failures-markup.xml 203 KB

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