explicit-failures-markup.xml 255 KB

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