explicit-failures-markup.xml 309 KB

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