explicit-failures-markup.xml 249 KB

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