explicit-failures-markup.xml 309 KB

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