explicit-failures-markup.xml 310 KB

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