explicit-failures-markup.xml 310 KB

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