explicit-failures-markup.xml 241 KB

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