explicit-failures-markup.xml 250 KB

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