explicit-failures-markup.xml 259 KB

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