explicit-failures-markup.xml 241 KB

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