explicit-failures-markup.xml 249 KB

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