explicit-failures-markup.xml 237 KB

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