explicit-failures-markup.xml 238 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987
  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. <mark-expected-failures>
  2401. <test name="optional_test"/>
  2402. <toolset name="msvc-7.1"/>
  2403. <note author="Niels Dekker" date="2008-04-28">
  2404. MSVC 2003 (7.1) does not always do argument-dependent lookup (ADL), when it should.
  2405. This causes test failures when swapping boost::optional&lt;T&gt;, for
  2406. T = optional_swap_test::class_whose_default_ctor_should_be_used.
  2407. </note>
  2408. </mark-expected-failures>
  2409. </library>
  2410. <library name="pool">
  2411. <mark-unusable>
  2412. <toolset name="gcc-2.95.3-*"/>
  2413. <note author="Doug Gregor" refid="2"/>
  2414. </mark-unusable>
  2415. </library>
  2416. <!-- preprocessor -->
  2417. <library name="preprocessor">
  2418. <mark-expected-failures>
  2419. <test name="seq"/>
  2420. <toolset name="cw-8.3"/>
  2421. <note author="Paul Mensonides" refid="2"/>
  2422. </mark-expected-failures>
  2423. </library>
  2424. <!-- rational -->
  2425. <library name="rational">
  2426. <mark-expected-failures>
  2427. <test name="rational_test"/>
  2428. <toolset name="sun-5.8"/>
  2429. <note author="J. L&#195;&#179;pez" date="19 Oct 2006">
  2430. The test is exposing the following known error of Sun Studio 11:
  2431. overload resolution fails if
  2432. a) some class has a conversion operator to a reference to
  2433. a built-in type, and
  2434. b) overload resolution involves a user-defined operator as well
  2435. as a built-in operator, and
  2436. c) the built-in operator takes the result of the conversion
  2437. mentioned in a) as an operand.
  2438. A fix will be reportedly included in patch no 6 of Sun Studio 11.
  2439. </note>
  2440. </mark-expected-failures>
  2441. </library>
  2442. <!-- serialization -->
  2443. <library name="serialization">
  2444. <mark-unusable>
  2445. <toolset name="mipspro*" />
  2446. <toolset name="dmc*" />
  2447. <toolset name="sunpro*" />
  2448. <note author="Robert Ramey" date="13 Jul 2007" refid="9,17,18"/>
  2449. </mark-unusable>
  2450. <mark-unusable>
  2451. <toolset name="gcc-2.95.3-linux"/>
  2452. <note author="Robert Ramey" date="12 Feb 05" refid="18,19"/>
  2453. </mark-unusable>
  2454. <mark-expected-failures>
  2455. <test name="*_warchive"/>
  2456. <test name="test_codecvt_null"/>
  2457. <test name="test_utf8_codecvt"/>
  2458. <toolset name="mingw*"/>
  2459. <toolset name="*mingw*"/>
  2460. <toolset name="*cygwin*"/>
  2461. <toolset name="gcc-2.95.3-linux"/>
  2462. <toolset name="*como-4_3_3*"/>
  2463. <note author="Robert Ramey,Roland Schwarz" date="16 Feb 07" refid="19"/>
  2464. </mark-expected-failures>
  2465. <mark-expected-failures>
  2466. <test name="test_void_cast*"/>
  2467. <toolset name="msvc-6.5*"/>
  2468. <note author="Robert Ramey" date="20 Sep 2004" refid="16,29"/>
  2469. </mark-expected-failures>
  2470. <mark-expected-failures>
  2471. <test name="test_reset_object_address*"/>
  2472. <toolset name="msvc-6.5*"/>
  2473. <note author="Robert Ramey" date="12 Feb 05" refid="6,29"/>
  2474. </mark-expected-failures>
  2475. <mark-expected-failures>
  2476. <test name="test_reset_object_address*"/>
  2477. <toolset name="msvc-7.0"/>
  2478. <note author="J. L&#195;&#179;pez" date="20 Dec 2006">
  2479. This error shows when the code has become too complex for the
  2480. compiler to handle. The problem has no relationship with the
  2481. functionality being tested, which in fact does work for
  2482. MSVC++ 7.0.
  2483. </note>
  2484. </mark-expected-failures>
  2485. <mark-expected-failures>
  2486. <test name="test_const"/>
  2487. <toolset name="msvc-6.5*"/>
  2488. <toolset name="msvc-7.0"/>
  2489. <note author="Aleksey Gurtovoy" refid="29"/>
  2490. </mark-expected-failures>
  2491. <mark-expected-failures>
  2492. <test name="test_demo_pimpl"/>
  2493. <test name="test_diamond*"/>
  2494. <test name="test_mult_archive_types"/>
  2495. <toolset name="msvc-6.5*"/>
  2496. <toolset name="msvc-7.0"/>
  2497. <note author="Robert Ramey" refid="6">
  2498. msvc 6 compiler failure. The facility being tested conflicts the the
  2499. compiler in a fundamental way and cannnot be worked around.
  2500. </note>
  2501. </mark-expected-failures>
  2502. <mark-expected-failures>
  2503. <test name="test_mi*"/>
  2504. <toolset name="msvc-6.5*"/>
  2505. <note author="Robert Ramey" refid="6">
  2506. msvc 6 compiler failure. The facility being tested conflicts the the
  2507. compiler in a fundamental way and cannnot be worked around.
  2508. </note>
  2509. </mark-expected-failures>
  2510. <mark-expected-failures>
  2511. <test name="*_dll"/>
  2512. <toolset name="msvc-stlport"/>
  2513. <toolset name="msvc-6.5_stlport4"/>
  2514. <note author="Robert Ramey">
  2515. This failure appears when STLPort is built and used as a DLL with msvc 6.
  2516. STLPort suggests that the next version of STLPort(5.0) will include a workaround
  2517. for this problem.
  2518. </note>
  2519. </mark-expected-failures>
  2520. <mark-expected-failures>
  2521. <test name="*"/>
  2522. <toolset name="gcc-2.95.3-stlport*"/>
  2523. <note author="Aleksey Gurtovoy">
  2524. The library is believed to work in this configuration <i>if compiled against
  2525. Spirit 1.6</i>. The latter is not provided by the particular testing
  2526. environment these tests have been run in.
  2527. </note>
  2528. </mark-expected-failures>
  2529. <mark-expected-failures>
  2530. <test name="test_exported*"/>
  2531. <test name="test_mi*"/>
  2532. <test name="test_mult_archive_types*"/>
  2533. <test name="test_no_rtti*"/>
  2534. <test name="test_non_default_ctor2*"/>
  2535. <test name="test_registered*"/>
  2536. <test name="test_shared_ptr*"/>
  2537. <test name="test_unregistered*"/>
  2538. <toolset name="cw*"/>
  2539. <note author="Robert Ramey" refid="29">
  2540. All tests that serialize derived pointers currently fail with Metrowerks compilers.
  2541. </note>
  2542. </mark-expected-failures>
  2543. <mark-expected-failures>
  2544. <test name="test_no_rtti_*"/>
  2545. <toolset name="borland-5.6*"/>
  2546. <toolset name="borland-5.8*"/>
  2547. <toolset name="borland-5.9*"/>
  2548. <note author="Aleksey Gurtovoy" refid="29"/>
  2549. </mark-expected-failures>
  2550. <mark-expected-failures>
  2551. <test name="test_smart_cast"/>
  2552. <toolset name="intel-7.1-linux"/>
  2553. <note author="Aleksey Gurtovoy" refid="29"/>
  2554. </mark-expected-failures>
  2555. <mark-expected-failures>
  2556. <test name="test_diamond*"/>
  2557. <toolset name="cw-8*"/>
  2558. <toolset name="cw-9.5-darwin"/>
  2559. <note author="Rene Rivera">
  2560. The CW compilers have problems with the static construction idiom used to
  2561. implement the type registration in the Boost.Serialization library. In many
  2562. cases CW specific work arounds are implemented in the library but this one
  2563. is not immediately solvable. There is a user work around possible, please
  2564. contact the library developers on the Boost list for information on the
  2565. work around if needed.
  2566. </note>
  2567. </mark-expected-failures>
  2568. <mark-expected-failures>
  2569. <test name="test_class_info_load_text*"/>
  2570. <test name="test_class_info_load_xml_warchive*"/>
  2571. <toolset name="cw-9.5-darwin"/>
  2572. <note author="Rene Rivera" refid="29"/>
  2573. </mark-expected-failures>
  2574. <mark-expected-failures>
  2575. <test name="test_class_info_load_text_warchive_dll"/>
  2576. <toolset name="msvc-6.5"/>
  2577. <note author="Doug Gregor" refid="29"/>
  2578. </mark-expected-failures>
  2579. <mark-expected-failures>
  2580. <test name="test_variant_*"/>
  2581. <toolset name="hp_cxx-65*"/>
  2582. <note author="Markus Schoepflin">
  2583. The variant library is not supported for this compiler version.
  2584. Therefore serialization of variants doesn't work.
  2585. </note>
  2586. </mark-expected-failures>
  2587. <mark-expected-failures>
  2588. <test name="*_warchive"/>
  2589. <toolset name="qcc-3.3.5*gpp"/>
  2590. <note author="Jim Douglas" date="12 Feb 06" refid="36"/>
  2591. </mark-expected-failures>
  2592. <mark-expected-failures>
  2593. <test name="test_variant_*"/>
  2594. <toolset name="borland-5.8*"/>
  2595. <toolset name="borland-5.9*"/>
  2596. <note author="Vladimir Prus">
  2597. The compiler fails with an error supposedly related to std::fpos&lt;&gt;::_Stz from the
  2598. &lt;iosfwd&gt; header. It is not known what causes the compiler to instantiate this
  2599. field and what causes the instantiation to fail.
  2600. </note>
  2601. </mark-expected-failures>
  2602. </library>
  2603. <!-- smart_ptr -->
  2604. <library name="smart_ptr">
  2605. <mark-expected-failures>
  2606. <test name="shared_ptr_assign_fail"/>
  2607. <toolset name="gcc-2.9*"/>
  2608. <toolset name="sunpro-5_3-sunos"/>
  2609. <note refid="32" author="Peter Dimov"/>
  2610. </mark-expected-failures>
  2611. <mark-expected-failures>
  2612. <test name="weak_ptr_test"/>
  2613. <toolset name="hp_cxx-71_006_*"/>
  2614. <note author="Markus Schoepflin" refid="3"/>
  2615. </mark-expected-failures>
  2616. <mark-expected-failures>
  2617. <test name="auto_ptr_rv_test"/>
  2618. <toolset name="gcc-2.9*"/>
  2619. <toolset name="borland-5*"/>
  2620. <toolset name="cw-8*"/>
  2621. <note refid="31" author="Peter Dimov"/>
  2622. </mark-expected-failures>
  2623. <mark-expected-failures>
  2624. <test name="pointer_to_other_test"/>
  2625. <toolset name="msvc-6.5*"/>
  2626. <toolset name="msvc-7.0"/>
  2627. <note refid="31" author="Peter Dimov"/>
  2628. </mark-expected-failures>
  2629. <mark-expected-failures>
  2630. <test name="shared_ptr_alloc2_test"/>
  2631. <toolset name="msvc-6.5*"/>
  2632. <note refid="31" author="Peter Dimov"/>
  2633. </mark-expected-failures>
  2634. <mark-expected-failures>
  2635. <test name="shared_ptr_move_test"/>
  2636. <toolset name="*"/>
  2637. <note refid="40" author="Boris Gubenko"/>
  2638. </mark-expected-failures>
  2639. </library>
  2640. <!-- spirit -->
  2641. <library name="spirit">
  2642. <mark-unusable>
  2643. <toolset name="msvc-6.5*"/>
  2644. <toolset name="borland-5.5*"/>
  2645. <toolset name="borland-5.6*"/>
  2646. <toolset name="borland-5.8*"/>
  2647. <toolset name="msvc-7.0"/>
  2648. <toolset name="gcc-2.95.3-linux"/>
  2649. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  2650. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  2651. <toolset name="sunpro-5_3-sunos"/>
  2652. <note>
  2653. <p>
  2654. Historically, Spirit supported a lot of compilers, including (to some
  2655. extent) poorly conforming compilers such as VC6. Spirit v1.6.x will be
  2656. the last release that will support older poorly conforming compilers.
  2657. Starting from Spirit v1.8.0, ill conforming compilers will not be
  2658. supported. If you are still using one of these older compilers, you can
  2659. still use Spirit v1.6.x.
  2660. </p>
  2661. <p>
  2662. The reason why Spirit v1.6.x worked on old non-conforming compilers is
  2663. that the authors laboriously took the trouble of searching for
  2664. workarounds to make these compilers happy. The process takes a lot of
  2665. time and energy, especially when one encounters the dreaded ICE or
  2666. "Internal Compiler Error". Sometimes searching for a single workaround
  2667. takes days or even weeks. Sometimes, there are no known workarounds. This
  2668. stifles progress a lot. And, as the library gets more progressive and
  2669. takes on more advanced C++ techniques, the difficulty is escalated to
  2670. even new heights.
  2671. </p>
  2672. <p>
  2673. Spirit v1.6.x will still be supported. Maintenance and bug fixes will
  2674. still be applied. There will still be active development for the back-
  2675. porting of new features introduced in Spirit v1.8.0 (and Spirit 1.9.0)
  2676. to lesser able compilers; hopefully, fueled by contributions from the
  2677. community. For instance, there is already a working AST tree back-port
  2678. for VC6 and VC7 by Peder Holt.
  2679. </p>
  2680. </note>
  2681. </mark-unusable>
  2682. <mark-expected-failures>
  2683. <test name="action_tests*"/>
  2684. <toolset name="iw-7_1-vc6"/>
  2685. <note author="Aleksey Gurtovoy" refid="4"/>
  2686. </mark-expected-failures>
  2687. <mark-expected-failures>
  2688. <test name="ast_calc_tests*"/>
  2689. <test name="closure_tests*"/>
  2690. <test name="multi_pass_compile_tests"/>
  2691. <test name="repeat_ast_tests*"/>
  2692. <toolset name="intel-8.0-linux"/>
  2693. <toolset name="intel-8.1-linux"/>
  2694. <note author="Aleksey Gurtovoy">
  2695. This failure is caused by a compiler bug that manifests itself in the
  2696. particular environment/hardware configuration the test has been run in.
  2697. You may or may not experience this issue in your local setup.
  2698. </note>
  2699. </mark-expected-failures>
  2700. <mark-expected-failures>
  2701. <test name="escape_char_parser_tests*"/>
  2702. <toolset name="intel-7.1-linux"/>
  2703. <toolset name="intel-7.1-stdlib-default-linux"/>
  2704. <note author="Aleksey Gurtovoy" refid="19"/>
  2705. </mark-expected-failures>
  2706. <mark-expected-failures>
  2707. <test name="escape_char_parser_tests*"/>
  2708. <toolset name="iw-7_1-vc6*"/>
  2709. <note author="Aleksey Gurtovoy" refid="28"/>
  2710. </mark-expected-failures>
  2711. <mark-expected-failures>
  2712. <test name="chset_tests*"/>
  2713. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  2714. <note author="Aleksey Gurtovoy" refid="28"/>
  2715. </mark-expected-failures>
  2716. </library>
  2717. <!-- typeof -->
  2718. <library name="typeof">
  2719. <mark-unusable>
  2720. <toolset name="gcc-2.95.*"/>
  2721. <toolset name="sunpro*"/>
  2722. <toolset name="borland-5.6.*"/>
  2723. <note author="Arkadiy Vertleyb">
  2724. This compiler is not supported.
  2725. </note>
  2726. </mark-unusable>
  2727. <test name="*_native" category="Native compiler support">
  2728. <mark-failure>
  2729. <toolset name="acc*"/>
  2730. <toolset name="intel-vc71-win*"/>
  2731. <toolset name="intel-vc8-win*"/>
  2732. <toolset name="como-4_3_3-vc7_1"/>
  2733. <toolset name="hp_cxx*"/>
  2734. <toolset name="sun-5.*"/>
  2735. <toolset name="borland-5*"/>
  2736. <toolset name="mipspro*"/>
  2737. <note author="Arkadiy Vertleyb">
  2738. Native mode is not supported for this compiler.
  2739. </note>
  2740. </mark-failure>
  2741. </test>
  2742. <mark-expected-failures>
  2743. <test name="*_emulation"/>
  2744. <toolset name="msvc-6.5*"/>
  2745. <toolset name="msvc-7.0"/>
  2746. <toolset name="cw-8_*"/>
  2747. <note author="Arkadiy Vertleyb">
  2748. Emulation mode is not supported for this compiler.
  2749. </note>
  2750. </mark-expected-failures>
  2751. <mark-expected-failures>
  2752. <test name="function_native"/>
  2753. <test name="template_tpl_native"/>
  2754. <test name="function_binding_native"/>
  2755. <test name="odr_no_uns"/>
  2756. <toolset name="msvc-6.5*"/>
  2757. <toolset name="msvc-7.0"/>
  2758. <note author="Arkadiy Vertleyb">
  2759. The feature is not supported by this compiler.
  2760. </note>
  2761. </mark-expected-failures>
  2762. <mark-expected-failures>
  2763. <test name="function_native"/>
  2764. <toolset name="cw-8_*"/>
  2765. <note author="Arkadiy Vertleyb">
  2766. The feature is not supported by this compiler.
  2767. </note>
  2768. </mark-expected-failures>
  2769. <mark-expected-failures>
  2770. <test name="function_binding_emulation"/>
  2771. <test name="function_emulation"/>
  2772. <test name="function_ptr_from_tpl_emulation"/>
  2773. <test name="modifiers_emulation"/>
  2774. <test name="nested_typedef_emulation"/>
  2775. <toolset name="borland-5.8*"/>
  2776. <note author="Peder Holt">
  2777. The feature is not supported by this compiler.
  2778. </note>
  2779. </mark-expected-failures>
  2780. </library>
  2781. <!-- function -->
  2782. <library name="function">
  2783. <mark-unusable>
  2784. <toolset name="sunpro-5_3-sunos"/>
  2785. <note author="Douglas Gregor" refid="3"/>
  2786. </mark-unusable>
  2787. <test name="allocator_test">
  2788. <mark-failure>
  2789. <toolset name="msvc-6.5"/>
  2790. <toolset name="msvc-7.0"/>
  2791. <note author="B. Dawes" refid="5"/>
  2792. </mark-failure>
  2793. </test>
  2794. <test name="contains_test">
  2795. <mark-failure>
  2796. <toolset name="msvc-6.5*"/>
  2797. <note refid="3" author="D. Gregor"/>
  2798. </mark-failure>
  2799. </test>
  2800. <test name="function_30">
  2801. <mark-failure>
  2802. <toolset name="vacpp"/>
  2803. <note refid="16" author="D. Gregor"/>
  2804. </mark-failure>
  2805. </test>
  2806. <test name="function_arith_cxx98">
  2807. <mark-failure>
  2808. <toolset name="borland-5.6*"/>
  2809. <toolset name="borland-5.8*"/>
  2810. <toolset name="borland-5.9*"/>
  2811. <toolset name="msvc-6.5"/>
  2812. <toolset name="msvc-7.0"/>
  2813. <note author="B. Dawes" refid="3"/>
  2814. </mark-failure>
  2815. </test>
  2816. <test name="function_ref_cxx98">
  2817. <mark-failure>
  2818. <toolset name="borland-5.6*"/>
  2819. <toolset name="borland-5.8*"/>
  2820. <toolset name="borland-5.9*"/>
  2821. <toolset name="msvc-6.5"/>
  2822. <toolset name="msvc-7.0"/>
  2823. <note author="B. Dawes" refid="3"/>
  2824. </mark-failure>
  2825. </test>
  2826. <test name="lambda_test">
  2827. <mark-failure>
  2828. <toolset name="borland-5.6*"/>
  2829. <toolset name="borland-5.8*"/>
  2830. <toolset name="borland-5.9*"/>
  2831. <toolset name="msvc-6.5"/>
  2832. <toolset name="msvc-7.0"/>
  2833. <note author="B. Dawes" refid="3"/>
  2834. </mark-failure>
  2835. <mark-failure>
  2836. <toolset name="cw-8.3*"/>
  2837. <note author="B. Dawes" refid="2"/>
  2838. </mark-failure>
  2839. </test>
  2840. <test name="lib_function_test">
  2841. <mark-failure>
  2842. <toolset name="borland-5.6*"/>
  2843. <toolset name="borland-5.8*"/>
  2844. <toolset name="borland-5.9*"/>
  2845. <toolset name="msvc-6.5"/>
  2846. <toolset name="msvc-7.0"/>
  2847. <note author="B. Dawes" refid="3"/>
  2848. </mark-failure>
  2849. <mark-failure>
  2850. <toolset name="cw-8.3*"/>
  2851. <note author="B. Dawes" refid="2"/>
  2852. </mark-failure>
  2853. </test>
  2854. <test name="mem_fun_cxx98">
  2855. <mark-failure>
  2856. <toolset name="borland-5.6*"/>
  2857. <toolset name="borland-5.8*"/>
  2858. <toolset name="borland-5.9*"/>
  2859. <toolset name="msvc-6.5"/>
  2860. <toolset name="msvc-7.0"/>
  2861. <note author="B. Dawes" refid="3"/>
  2862. </mark-failure>
  2863. <mark-failure>
  2864. <toolset name="cw-8.3*"/>
  2865. <note author="B. Dawes" refid="2"/>
  2866. </mark-failure>
  2867. </test>
  2868. <test name="std_bind_cxx98">
  2869. <mark-failure>
  2870. <toolset name="borland-5.6*"/>
  2871. <toolset name="borland-5.8*"/>
  2872. <toolset name="borland-5.9*"/>
  2873. <toolset name="msvc-6.5"/>
  2874. <toolset name="msvc-7.0"/>
  2875. <note author="B. Dawes" refid="3"/>
  2876. </mark-failure>
  2877. </test>
  2878. <test name="std_bind_portable">
  2879. <mark-failure>
  2880. <toolset name="msvc-6.5"/>
  2881. <note author="B. Dawes" refid="5"/>
  2882. </mark-failure>
  2883. </test>
  2884. <test name="sum_avg_cxx98">
  2885. <mark-failure>
  2886. <toolset name="borland-5.6*"/>
  2887. <toolset name="borland-5.8*"/>
  2888. <toolset name="borland-5.9*"/>
  2889. <toolset name="msvc-6.5"/>
  2890. <toolset name="msvc-7.0"/>
  2891. <note author="B. Dawes" refid="3"/>
  2892. </mark-failure>
  2893. </test>
  2894. </library>
  2895. <!-- iterator -->
  2896. <library name="iterator">
  2897. <test name="interoperable_fail" category="Corner-case tests">
  2898. <mark-failure>
  2899. <toolset name="gcc-3.3*"/>
  2900. <toolset name="gcc-3.2*"/>
  2901. <toolset name="gcc-2*"/>
  2902. <toolset name="gcc"/>
  2903. <toolset name="mingw"/>
  2904. <toolset name="borland*"/>
  2905. <toolset name="cw-8*"/>
  2906. <toolset name="qcc-3.3*"/>
  2907. <note author="D. Abrahams">
  2908. This failure is caused by a compiler bug. Templated operators
  2909. that combine different iterators built with iterator_facade or
  2910. iterator_adaptor may be present in an overload set even when those
  2911. iterators are not interoperable. The usual result is that error
  2912. messages generated by illegal use of these operators will be of
  2913. lower quality.
  2914. </note>
  2915. </mark-failure>
  2916. </test>
  2917. <test name="is_convertible_fail" category="Corner-case tests">
  2918. <mark-failure>
  2919. <toolset name="gcc-2*"/>
  2920. <toolset name="gcc"/>
  2921. <toolset name="mingw"/>
  2922. <toolset name="borland*"/>
  2923. <toolset name="cw-8*"/>
  2924. <toolset name="msvc-6*"/>
  2925. <toolset name="msvc-7.0*"/>
  2926. <note author="D. Abrahams">
  2927. This failure is caused by a compiler bug.
  2928. <code>is_convertible&lt;T,U&gt;::value</code> may be true for unrelated
  2929. iterators <code>T</code> and <code>U</code>
  2930. (including many of the Boost specialized adaptors) which use
  2931. <code>enable_if_convertible</code> to restrict the applicability
  2932. of converting constructors, even when <code>T</code> is not
  2933. convertible to <code>U</code> because instantiating the
  2934. conversion will cause a compilation failure.
  2935. </note>
  2936. </mark-failure>
  2937. </test>
  2938. <test name="indirect_iter_member_types" category="Corner-case tests"/>
  2939. <mark-expected-failures>
  2940. <test name="indirect_iter_member_types"/>
  2941. <test name="pointee"/>
  2942. <toolset name="borland-5.6*"/>
  2943. <toolset name="borland-5.8*"/>
  2944. <toolset name="borland-5.9*"/>
  2945. <note author="D. Abrahams">
  2946. This failure is caused by a compiler bug. The
  2947. compiler tends to drop const-ness and as a result
  2948. some indirect_iterators will have pointer and
  2949. reference members of <code>T*</code> and <code>T&amp;</code> that should
  2950. have been <code>T const*</code> and <code>T const&amp;</code>.
  2951. </note>
  2952. </mark-expected-failures>
  2953. <mark-expected-failures>
  2954. <test name="zip_iterator_test"/>
  2955. <toolset name="borland-5.6*"/>
  2956. <toolset name="borland-5.8*"/>
  2957. <toolset name="borland-5.9*"/>
  2958. <note author="Aleksey Gurtovoy" date="19 Sep 2004" refid="26"/>
  2959. </mark-expected-failures>
  2960. <mark-expected-failures>
  2961. <test name="is_lvalue_iterator"/>
  2962. <toolset name="acc*"/>
  2963. <note author="Boris Gubenko">
  2964. For some currently unknown reason, with aCC, this test can be compiled
  2965. only in strict ansi mode. Since on HP-UX/aCC boost testing is done in the
  2966. default compilation mode, this test fails to compile on this platform.
  2967. </note>
  2968. </mark-expected-failures>
  2969. </library>
  2970. <!-- math -->
  2971. <library name="math">
  2972. <mark-unusable>
  2973. <toolset name="gcc-2.95.3-*"/>
  2974. <note author="Doug Gregor" refid="3"/>
  2975. </mark-unusable>
  2976. <mark-unusable>
  2977. <toolset name="borland-5.9.2"/>
  2978. <note author="John Maddock">
  2979. Sadly Borland-5.9.2 has an even harder time compiling this
  2980. library than earlier versions did. There are currently too
  2981. many issues to stand a chance of porting to this compiler.
  2982. </note>
  2983. </mark-unusable>
  2984. <mark-expected-failures>
  2985. <test name="test_traits"/>
  2986. <toolset name="gcc-3.3.6"/>
  2987. <note author="John Maddock">
  2988. This compiler is not sufficiently conforming to correctly handle these tests.
  2989. </note>
  2990. </mark-expected-failures>
  2991. <mark-expected-failures>
  2992. <test name="test_policy_2"/>
  2993. <toolset name="gcc-mingw-3.4.5"/>
  2994. <note author="John Maddock">
  2995. This test takes too long to build for this compiler and times out.
  2996. </note>
  2997. </mark-expected-failures>
  2998. <mark-expected-failures>
  2999. <test name="test_traits"/>
  3000. <toolset name="sun-5.8"/>
  3001. <toolset name="sun-5.9"/>
  3002. <note author="John Maddock">
  3003. This is a compiler bug: it is unable to use
  3004. SFINAE to detect the presence of specific
  3005. member functions.
  3006. </note>
  3007. </mark-expected-failures>
  3008. <mark-expected-failures>
  3009. <test name="std_real_concept_check"/>
  3010. <test name="test_instantiate1"/>
  3011. <test name="test_policy_sf"/>
  3012. <toolset name="sun-5.8"/>
  3013. <toolset name="sun-5.9"/>
  3014. <note author="John Maddock">
  3015. This is a compiler bug: it is unable to resolve the
  3016. overloaded functions.
  3017. </note>
  3018. </mark-expected-failures>
  3019. <mark-expected-failures>
  3020. <test name="test_binomial_real_concept"/>
  3021. <test name="test_ibeta_inv_ab_real_concept"/>
  3022. <test name="test_igamma_inva_real_concept"/>
  3023. <toolset name="sun-5.9"/>
  3024. <toolset name="sun-5.8"/>
  3025. <note author="John Maddock">
  3026. This test takes too long to execute and times out.
  3027. </note>
  3028. </mark-expected-failures>
  3029. <mark-expected-failures>
  3030. <test name="dist_binomial_incl_test"/>
  3031. <test name="dist_neg_binom_incl_test"/>
  3032. <test name="dist_poisson_incl_test"/>
  3033. <test name="test_binomial_double"/>
  3034. <test name="test_binomial_float"/>
  3035. <test name="test_binomial_long_double"/>
  3036. <test name="test_binomial_real_concept"/>
  3037. <test name="test_negative_binomial_double"/>
  3038. <test name="test_negative_binomial_float"/>
  3039. <test name="test_negative_binomial_long_double"/>
  3040. <test name="test_negative_binomial_real_concept"/>
  3041. <test name="test_poisson_double"/>
  3042. <test name="test_poisson_float"/>
  3043. <test name="test_poisson_long_double"/>
  3044. <test name="test_poisson_real_concept"/>
  3045. <test name="tools_roots_inc_test"/>
  3046. <toolset name="sun-5.8"/>
  3047. <toolset name="sun-5.7"/>
  3048. <note author="John Maddock">
  3049. These tests fail with an internal compiler error: there is no
  3050. known workaround at present, except to use Sun-5.9 which does
  3051. build this code correctly.
  3052. </note>
  3053. </mark-expected-failures>
  3054. <mark-expected-failures>
  3055. <test name="log1p_expm1_test"/>
  3056. <test name="test_bernoulli"/>
  3057. <test name="test_beta_dist"/>
  3058. <test name="test_binomial_float"/>
  3059. <test name="test_binomial_double"/>
  3060. <test name="test_binomial_coeff"/>
  3061. <test name="test_carlson"/>
  3062. <test name="test_cauchy"/>
  3063. <test name="test_cbrt"/>
  3064. <test name="test_chi_squared"/>
  3065. <test name="test_classify"/>
  3066. <test name="test_dist_overloads"/>
  3067. <test name="test_ellint_3"/>
  3068. <test name="test_exponential_dist"/>
  3069. <test name="test_factorials"/>
  3070. <test name="test_find_location"/>
  3071. <test name="test_find_scale"/>
  3072. <test name="test_fisher_f"/>
  3073. <test name="test_gamma_dist"/>
  3074. <test name="test_hermite"/>
  3075. <test name="test_ibeta_inv_float"/>
  3076. <test name="test_ibeta_inv_double"/>
  3077. <test name="test_ibeta_inv_ab_float"/>
  3078. <test name="test_igamma_inv_float"/>
  3079. <test name="test_igamma_inv_double"/>
  3080. <test name="test_igamma_inva_float"/>
  3081. <test name="test_igamma_inva_double"/>
  3082. <test name="test_instantiate1"/>
  3083. <test name="test_instantiate1"/>
  3084. <test name="test_laguerre"/>
  3085. <test name="test_legendre"/>
  3086. <test name="test_lognormal"/>
  3087. <test name="test_negative_binomial_float"/>
  3088. <test name="test_negative_binomial_double"/>
  3089. <test name="test_normal"/>
  3090. <test name="test_rayleigh"/>
  3091. <test name="test_remez"/>
  3092. <test name="test_roots"/>
  3093. <test name="test_students_t"/>
  3094. <test name="test_toms748_solve"/>
  3095. <test name="test_triangular"/>
  3096. <test name="test_uniform"/>
  3097. <test name="test_policy"/>
  3098. <test name="test_policy_sf"/>
  3099. <test name="test_bessel_j"/>
  3100. <test name="test_bessel_y"/>
  3101. <test name="dist_beta_incl_test"/>
  3102. <test name="dist_cauchy_incl_test"/>
  3103. <test name="dist_chi_squared_incl_test"/>
  3104. <test name="dist_exponential_incl_test"/>
  3105. <test name="dist_fisher_f_incl_test"/>
  3106. <test name="dist_gamma_incl_test"/>
  3107. <test name="dist_lognormal_incl_test"/>
  3108. <test name="dist_normal_incl_test"/>
  3109. <test name="dist_students_t_incl_test"/>
  3110. <test name="sf_beta_incl_test"/>
  3111. <test name="sf_bessel_incl_test"/>
  3112. <test name="sf_cbrt_incl_test"/>
  3113. <test name="sf_gamma_incl_test"/>
  3114. <test name="sf_legendre_incl_test"/>
  3115. <test name="std_real_concept_check"/>
  3116. <test name="test_traits"/>
  3117. <test name="tools_remez_inc_test"/>
  3118. <test name="tools_roots_inc_test"/>
  3119. <test name="tools_series_inc_test"/>
  3120. <test name="tools_solve_inc_test"/>
  3121. <test name="tools_test_data_inc_test"/>
  3122. <test name="common_factor_test"/>
  3123. <test name="octonion_test"/>
  3124. <test name="quaternion_test"/>
  3125. <test name="complex_test"/>
  3126. <toolset name="borland-5.6.*"/>
  3127. <note author="John Maddock">
  3128. This compiler is not sufficiently conforming to correctly handle these tests.
  3129. </note>
  3130. </mark-expected-failures>
  3131. <mark-expected-failures>
  3132. <test name="test_bernoulli"/>
  3133. <test name="test_beta_dist"/>
  3134. <test name="test_binomial_float"/>
  3135. <test name="test_binomial_double"/>
  3136. <test name="test_binomial_coeff"/>
  3137. <test name="test_cauchy"/>
  3138. <test name="test_dist_overloads"/>
  3139. <test name="test_ellint_3"/>
  3140. <test name="test_exponential_dist"/>
  3141. <test name="test_factorials"/>
  3142. <test name="test_find_location"/>
  3143. <test name="test_find_scale"/>
  3144. <test name="test_hermite"/>
  3145. <test name="test_ibeta_inv_float"/>
  3146. <test name="test_ibeta_inv_double"/>
  3147. <test name="test_ibeta_inv_ab_float"/>
  3148. <test name="test_igamma_inva_float"/>
  3149. <test name="test_igamma_inva_double"/>
  3150. <test name="test_instantiate1"/>
  3151. <test name="test_instantiate1"/>
  3152. <test name="test_laguerre"/>
  3153. <test name="test_legendre"/>
  3154. <test name="test_lognormal"/>
  3155. <test name="test_negative_binomial_double"/>
  3156. <test name="test_normal"/>
  3157. <test name="test_rayleigh"/>
  3158. <test name="test_remez"/>
  3159. <test name="test_roots"/>
  3160. <test name="test_toms748_solve"/>
  3161. <test name="test_policy"/>
  3162. <test name="test_policy_sf"/>
  3163. <test name="dist_cauchy_incl_test"/>
  3164. <test name="dist_exponential_incl_test"/>
  3165. <test name="dist_lognormal_incl_test"/>
  3166. <test name="dist_normal_incl_test"/>
  3167. <test name="sf_gamma_incl_test"/>
  3168. <test name="sf_legendre_incl_test"/>
  3169. <test name="std_real_concept_check"/>
  3170. <test name="test_traits"/>
  3171. <test name="tools_remez_inc_test"/>
  3172. <test name="tools_roots_inc_test"/>
  3173. <test name="tools_series_inc_test"/>
  3174. <test name="tools_solve_inc_test"/>
  3175. <test name="tools_test_data_inc_test"/>
  3176. <test name="complex_test"/>
  3177. <toolset name="borland-5.8.2"/>
  3178. <note author="John Maddock">
  3179. This compiler is not sufficiently conforming to correctly handle these tests.
  3180. </note>
  3181. </mark-expected-failures>
  3182. <mark-expected-failures>
  3183. <test name="octonion_test"/>
  3184. <test name="quaternion_test"/>
  3185. <toolset name="gcc-3.4.3_sunos"/>
  3186. <note author="Caleb Epstein">
  3187. There appears to be a bug in gcc's <code>std::exp (long
  3188. double)</code> on this platform.
  3189. </note>
  3190. </mark-expected-failures>
  3191. <mark-expected-failures>
  3192. <test name="test_binomial_real_concept"/>
  3193. <toolset name="gcc-3.4.6_linux_x86_64"/>
  3194. <toolset name="gcc-4.2.1_linux_x86_64"/>
  3195. <note author="John Maddock">
  3196. This test takes too long to execute and times out on this platform.
  3197. </note>
  3198. </mark-expected-failures>
  3199. <mark-expected-failures>
  3200. <test name="test_remez"/>
  3201. <toolset name="hp_cxx-71_006_tru64"/>
  3202. <note author="John Maddock">
  3203. For some reason taking the address of std library math functions fails
  3204. on this platform: this is a problem for our test code, not the library.
  3205. </note>
  3206. </mark-expected-failures>
  3207. <mark-expected-failures>
  3208. <test name="special_functions_test"/>
  3209. <test name="octonion_test"/>
  3210. <test name="quaternion_test"/>
  3211. <test name="quaternion_mult_incl_test"/>
  3212. <toolset name="msvc-6*"/>
  3213. <note author="John Maddock">
  3214. This compiler is not sufficiently conforming to compile these tests.
  3215. </note>
  3216. </mark-expected-failures>
  3217. <mark-expected-failures>
  3218. <test name="complex_test"/>
  3219. <test name="log1p_expm1_test"/>
  3220. <toolset name="sunpro*"/>
  3221. <note author="John Maddock">
  3222. std::numeric_limits&lt;long double&gt;::infinity() is apparently
  3223. broken in this compiler: it's filed as bug 6347520 with Sun.
  3224. </note>
  3225. </mark-expected-failures>
  3226. <mark-expected-failures>
  3227. <test name="complex_test"/>
  3228. <toolset name="msvc-6*"/>
  3229. <note author="John Maddock">
  3230. Incomplete std::complex support make these tests pointless
  3231. (the complex trig functions are absent).
  3232. </note>
  3233. </mark-expected-failures>
  3234. <mark-expected-failures>
  3235. <test name="special_functions_test"/>
  3236. <test name="octonion_test"/>
  3237. <test name="quaternion_test"/>
  3238. <test name="quaternion_mult_incl_test"/>
  3239. <toolset name="sun-5.8"/>
  3240. <note author="John Maddock">
  3241. These have yet to fully investigated, but the code is known
  3242. to compile with more conforming compilers, probably workarounds
  3243. are possible if someone is prepared to invest the time.
  3244. </note>
  3245. </mark-expected-failures>
  3246. <mark-expected-failures>
  3247. <test name="quaternion_test"/>
  3248. <toolset name="msvc-7.1_stlport4"/>
  3249. <note author="John Maddock">
  3250. Appears to be a bug in STLport's complex abs function, but needs more investigation.
  3251. </note>
  3252. </mark-expected-failures>
  3253. <mark-expected-failures>
  3254. <test name="special_functions_test"/>
  3255. <toolset name="msvc-7.1_stlport4"/>
  3256. <note author="John Maddock">
  3257. This appears to be a problem with STLPort's abs function: the issue only effects the
  3258. test code. A workaround should be possible but users should be encouraged to use
  3259. STLport 5 instead.
  3260. </note>
  3261. </mark-expected-failures>
  3262. <mark-expected-failures>
  3263. <test name="quaternion_test"/>
  3264. <test name="octonion_test"/>
  3265. <toolset name="gcc-cygwin*"/>
  3266. <note author="John Maddock">
  3267. No true long double standard lib support causes these tests to fail.
  3268. </note>
  3269. </mark-expected-failures>
  3270. <mark-expected-failures>
  3271. <test name="quaternion_test"/>
  3272. <test name="complex_test"/>
  3273. <test name="special_functions_test"/>
  3274. <toolset name="intel-linux*"/>
  3275. <note author="John Maddock">
  3276. This is Intel issue 409291, it should be fixed from
  3277. compiler package l_cc_c_9.1.046 onwards.
  3278. </note>
  3279. </mark-expected-failures>
  3280. <mark-expected-failures>
  3281. <test name="complex_test"/>
  3282. <toolset name="qcc-3.3.5*cpp"/>
  3283. <note author="Jim Douglas" date="14 Feb 06" refid="27"/>
  3284. </mark-expected-failures>
  3285. <mark-expected-failures>
  3286. <test name="common_factor_test"/>
  3287. <toolset name="msvc-6.5_stlport*"/>
  3288. <toolset name="msvc-7.1_stlport*"/>
  3289. <note author="John Maddock">
  3290. This failure appears to be caused by a compiler bug: please note
  3291. that the issue only effects the test suite, not the library itself.
  3292. A workaround is available but breaks other compilers.
  3293. </note>
  3294. </mark-expected-failures>
  3295. </library>
  3296. <!-- numeric/conversion -->
  3297. <library name="numeric/conversion">
  3298. <test name="bounds_test">
  3299. <mark-failure>
  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="converter_test">
  3307. <mark-failure>
  3308. <toolset name="gcc-3.4.5_linux_x86_64"/>
  3309. <toolset name="borland-5.6*"/>
  3310. <toolset name="borland-5.8*"/>
  3311. <toolset name="borland-5.9*"/>
  3312. <note author="Fernando Cacciola" refid="3"/>
  3313. </mark-failure>
  3314. </test>
  3315. <test name="traits_test">
  3316. <mark-failure>
  3317. <toolset name="borland-5.6*"/>
  3318. <toolset name="borland-5.8*"/>
  3319. <toolset name="borland-5.9*"/>
  3320. <note author="Fernando Cacciola" refid="3"/>
  3321. </mark-failure>
  3322. </test>
  3323. <test name="udt_example_0">
  3324. <mark-failure>
  3325. <toolset name="msvc-6.5_stlport4"/>
  3326. <toolset name="borland-5.6*"/>
  3327. <toolset name="borland-5.8*"/>
  3328. <toolset name="borland-5.9*"/>
  3329. <toolset name="msvc-6.5*"/>
  3330. <note author="Fernando Cacciola" refid="30"/>
  3331. </mark-failure>
  3332. </test>
  3333. <test name="udt_support_test">
  3334. <mark-failure>
  3335. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  3336. <toolset name="borland-5.6*"/>
  3337. <toolset name="borland-5.8*"/>
  3338. <toolset name="borland-5.9*"/>
  3339. <note author="Fernando Cacciola" refid="3"/>
  3340. </mark-failure>
  3341. </test>
  3342. </library>
  3343. <!-- numeric/interval -->
  3344. <library name="numeric/interval">
  3345. <mark-unusable>
  3346. <toolset name="borland-5.6*"/>
  3347. <toolset name="msvc-6.5*"/>
  3348. <toolset name="msvc-7.0"/>
  3349. </mark-unusable>
  3350. <mark-expected-failures>
  3351. <test name="det"/>
  3352. <test name="mul"/>
  3353. <test name="overflow"/>
  3354. <toolset name="hp_cxx*"/>
  3355. <note author="G. Melquiond">
  3356. This test ensures the inclusion property of interval
  3357. arithmetic is available for built-in floating-point types
  3358. <code>float</code> and <code>double</code>. If the test
  3359. fails, <code>interval&lt;float&gt;</code> and
  3360. <code>interval&lt;double&gt;</code> should not be used
  3361. on this compiler/platform since there will be no
  3362. numerical guarantee.
  3363. </note>
  3364. </mark-expected-failures>
  3365. <mark-expected-failures>
  3366. <test name="det"/>
  3367. <test name="integer"/>
  3368. <test name="overflow"/>
  3369. <toolset name="borland-5.8*"/>
  3370. <toolset name="borland-5.9*"/>
  3371. <note author="A.Meredith">
  3372. This compiler has some problems with name looup / overload resolution.
  3373. </note>
  3374. </mark-expected-failures>
  3375. <mark-expected-failures>
  3376. <test name="cmp_exn"/>
  3377. <test name="cmp_set"/>
  3378. <test name="cmp_tribool"/>
  3379. <toolset name="gcc-2.95.3-linux"/>
  3380. <note author="Aleksey Gurtovoy" refid="2"/>
  3381. </mark-expected-failures>
  3382. <mark-expected-failures>
  3383. <test name="det"/>
  3384. <toolset name="cw-8.3*"/>
  3385. <note author="Aleksey Gurtovoy" refid="2"/>
  3386. </mark-expected-failures>
  3387. <mark-expected-failures>
  3388. <test name="test_float"/>
  3389. <toolset name="msvc-7.1_stlport4"/>
  3390. <note author="Vladimir Prus">
  3391. This failure is unresearched. Presumably, the problem
  3392. is that the abs function is not available in the "right"
  3393. namespace with this compiler/stdlib combination.
  3394. </note>
  3395. </mark-expected-failures>
  3396. </library>
  3397. <!-- numeric/ublas -->
  3398. <library name="numeric/ublas">
  3399. <mark-unusable>
  3400. <toolset name="borland-5.6*"/>
  3401. <toolset name="borland-5.8*"/>
  3402. <toolset name="borland-5.9*"/>
  3403. <toolset name="gcc-3_3-darwin"/>
  3404. <note author="M.Stevens" refid="17"/>
  3405. </mark-unusable>
  3406. <mark-unusable>
  3407. <toolset name="cw-9.4"/>
  3408. <note author="M.Stevens" refid="2"/>
  3409. </mark-unusable>
  3410. <mark-unusable>
  3411. <toolset name="sun-5.8"/>
  3412. <note author="M.Stevens" refid="4"/>
  3413. </mark-unusable>
  3414. <mark-unusable>
  3415. <toolset name="cw-8.3"/>
  3416. <toolset name="msvc-6.5*"/>
  3417. <toolset name="msvc-7.0"/>
  3418. <toolset name="iw-7_1-vc6"/>
  3419. <toolset name="gcc-2.95*"/>
  3420. <note author="M.Stevens" refid="30"/>
  3421. </mark-unusable>
  3422. <mark-unusable>
  3423. <toolset name="msvc-7.1_stlport4"/>
  3424. <note author="Roland Schwarz">
  3425. This old version of the stlport library causes the BOOST_NO_STDC_NAMESPACE
  3426. macro to be set. But this conflicts with the requirements of the library.
  3427. </note>
  3428. </mark-unusable>
  3429. <mark-expected-failures>
  3430. <test name="test3"/>
  3431. <toolset name="qcc-3.3.5*cpp"/>
  3432. <note author="Jim Douglas" date="14 Feb 06" refid="27"/>
  3433. </mark-expected-failures>
  3434. </library>
  3435. <!-- program_options -->
  3436. <library name="program_options">
  3437. <!-- Mark unusable toolsets -->
  3438. <mark-unusable>
  3439. <toolset name="gcc-2.95.3-linux"/>
  3440. <note>
  3441. The failure is caused by standard library deficiencies
  3442. -- it lacks the basic_string class template and
  3443. the &lt;locale&gt; header.
  3444. </note>
  3445. </mark-unusable>
  3446. <mark-unusable>
  3447. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  3448. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  3449. <note refid="2"/>
  3450. </mark-unusable>
  3451. <mark-unusable>
  3452. <toolset name="msvc-6.5*"/>
  3453. <note refid="17"/>
  3454. </mark-unusable>
  3455. <mark-unusable>
  3456. <toolset name="msvc-7.0"/>
  3457. <note refid="29"/>
  3458. </mark-unusable>
  3459. <!-- Mark expected failures -->
  3460. <test name="unicode_test*">
  3461. <mark-failure>
  3462. <toolset name="iw-7_1-vc6"/>
  3463. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  3464. <toolset name="msvc-6.5*"/>
  3465. <note>The failures are caused by problems
  3466. with std::locale implementation</note>
  3467. </mark-failure>
  3468. </test>
  3469. <test name="options_description_test_dll">
  3470. <mark-failure>
  3471. <toolset name="msvc-6.5"/>
  3472. <toolset name="iw-7_1-vc6"/>
  3473. <note refid="23"/>
  3474. </mark-failure>
  3475. </test>
  3476. <test name="variable_map_test_dll">
  3477. <mark-failure>
  3478. <toolset name="iw-7_1-vc6"/>
  3479. <note refid="23"/>
  3480. </mark-failure>
  3481. </test>
  3482. <test name="*dll">
  3483. <mark-failure>
  3484. <toolset name="cw-8.3*"/>
  3485. <note refid="18"/>
  3486. </mark-failure>
  3487. </test>
  3488. <test name="*dll">
  3489. <mark-failure>
  3490. <toolset name="*como-4_3_3*"/>
  3491. <note refid="24"/>
  3492. </mark-failure>
  3493. </test>
  3494. <mark-expected-failures>
  3495. <test name="variable_map_test"/>
  3496. <test name="variable_map_test_dll"/>
  3497. <toolset name="msvc-6.5*"/>
  3498. <note>
  3499. The failures are caused by compiler bug: it's not possible to
  3500. explicitly pass template arguments to member template function. The
  3501. failure is serious and makes one of the primary interfaces
  3502. unusable.
  3503. </note>
  3504. </mark-expected-failures>
  3505. <mark-expected-failures>
  3506. <test name="cmdline_test_dll"/>
  3507. <test name="options_description_test_dll"/>
  3508. <test name="parsers_test_dll"/>
  3509. <test name="variable_map_test_dll"/>
  3510. <test name="positional_options_test_dll"/>
  3511. <toolset name="mingw-3*"/>
  3512. <note author="Aleksey Gurtovoy" refid="29"/>
  3513. </mark-expected-failures>
  3514. <mark-expected-failures>
  3515. <test name="unicode_test*"/>
  3516. <toolset name="mingw-3*"/>
  3517. <toolset name="gcc-3.4.2_mingw"/>
  3518. <toolset name="gcc-3.4.5_mingw"/>
  3519. <toolset name="gcc-mingw-3.4.5"/>
  3520. <toolset name="gcc-mingw-3.4.2"/>
  3521. <toolset name="gcc-cygwin-3.4.4"/>
  3522. <note refid="19"/>
  3523. </mark-expected-failures>
  3524. <mark-expected-failures>
  3525. <test name="unicode_test_dll"/>
  3526. <toolset name="*-darwin"/>
  3527. <note refid="35" author="Doug Gregor"/>
  3528. </mark-expected-failures>
  3529. <mark-expected-failures>
  3530. <test name="unicode_test*"/>
  3531. <toolset name="qcc-3.3.5*gpp"/>
  3532. <note author="Jim Douglas" date="12 Feb 06" refid="36"/>
  3533. </mark-expected-failures>
  3534. </library>
  3535. <!-- parameter -->
  3536. <library name="parameter">
  3537. <mark-expected-failures>
  3538. <test name="duplicates"/>
  3539. <toolset name="borland-5.6*"/>
  3540. <toolset name="borland-5.8*"/>
  3541. <toolset name="borland-5.9*"/>
  3542. <note refid="32" author="David Abrahams"/>
  3543. </mark-expected-failures>
  3544. <mark-expected-failures>
  3545. <test name="unnamed_fail"/>
  3546. <toolset name="msvc-7.0"/>
  3547. <toolset name="msvc-6*"/>
  3548. <note refid="32" author="David Abrahams"/>
  3549. </mark-expected-failures>
  3550. <test name="preprocessor">
  3551. <toolset name="[Ss]un-5.8"/>
  3552. <note>
  3553. Several compiler bugs were worked around in order to get
  3554. this test to pass, so it could be considered to be only
  3555. partially working. However, the library's macro system,
  3556. which is really being tested here, does work on this
  3557. compiler, which is why we worked around the failures.
  3558. Please see the <a
  3559. href="http://www.boost.org/libs/parameter/test/preprocessor.cpp">test's
  3560. source file</a> for details.
  3561. </note>
  3562. </test>
  3563. <mark-expected-failures>
  3564. <test name="maybe"/>
  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-parameter-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="python_test"/>
  3583. <toolset name="borland-5.6*"/>
  3584. <toolset name="borland-5.8*"/>
  3585. <toolset name="borland-5.9*"/>
  3586. <toolset name="msvc-6*"/>
  3587. <toolset name="msvc-7.0"/>
  3588. <note refid="31" author="Daniel Wallin"/>
  3589. </mark-expected-failures>
  3590. <mark-expected-failures>
  3591. <test name="optional_deduced_sfinae"/>
  3592. <toolset name="msvc-6*"/>
  3593. <toolset name="msvc-7.0"/>
  3594. <toolset name="borland-5.6*"/>
  3595. <toolset name="borland-5.8*"/>
  3596. <toolset name="borland-5.9*"/>
  3597. <note author="Daniel Wallin">
  3598. These compilers do not support SFINAE, so are expected to
  3599. fail this test.
  3600. </note>
  3601. </mark-expected-failures>
  3602. <mark-expected-failures>
  3603. <test name="preprocessor_deduced"/>
  3604. <toolset name="borland-5.6*"/>
  3605. <toolset name="borland-5.8*"/>
  3606. <toolset name="borland-5.9*"/>
  3607. <note author="Daniel Wallin">
  3608. Borland does not support this feature. A compatibility syntax
  3609. might be developed later on.
  3610. </note>
  3611. </mark-expected-failures>
  3612. <mark-expected-failures>
  3613. <test name="normalized_argument_types"/>
  3614. <toolset name="borland-5.6*"/>
  3615. <toolset name="borland-5.8*"/>
  3616. <toolset name="borland-5.9*"/>
  3617. <toolset name="msvc-6*"/>
  3618. <toolset name="msvc-7.0"/>
  3619. <note author="Daniel Wallin">
  3620. This feature generally requires advanced compiler
  3621. features not supported by these compilers. It might
  3622. be possible to work around the issue on VC6/7, but
  3623. at this time no such workaround has been done.
  3624. </note>
  3625. </mark-expected-failures>
  3626. <mark-expected-failures>
  3627. <test name="unnamed"/>
  3628. <toolset name="*"/>
  3629. <note author="Daniel Wallin">
  3630. This is old and should not be tested any more.
  3631. </note>
  3632. </mark-expected-failures>
  3633. <mark-expected-failures>
  3634. <test name="deduced_dependent_predicate"/>
  3635. <toolset name="msvc-6*"/>
  3636. <note refid="31" author="Daniel Wallin"/>
  3637. </mark-expected-failures>
  3638. <mark-expected-failures>
  3639. <test name="optional_deduced_sfinae"/>
  3640. <test name="preprocessor_deduced"/>
  3641. <test name="python_test"/>
  3642. <toolset name="sun-5.8"/>
  3643. <note author="John Maddock">
  3644. These test failure are reported to be under investigation
  3645. at Sun's compiler labs.
  3646. </note>
  3647. </mark-expected-failures>
  3648. <mark-expected-failures>
  3649. <test name="result_of"/>
  3650. <toolset name="msvc-6*"/>
  3651. <toolset name="msvc-7.0"/>
  3652. <toolset name="borland-5.6*"/>
  3653. <toolset name="borland-5.8*"/>
  3654. <toolset name="borland-5.9*"/>
  3655. <note refid="31" author="Daniel Wallin"/>
  3656. </mark-expected-failures>
  3657. <mark-expected-failures>
  3658. <test name="python_test"/>
  3659. <toolset name="qcc-3.3.5_gpp"/>
  3660. <note refid="6" author="Daniel Wallin"/>
  3661. </mark-expected-failures>
  3662. <mark-expected-failures>
  3663. <test name="sfinae"/>
  3664. <toolset name="borland-5.8*"/>
  3665. <toolset name="borland-5.9*"/>
  3666. <toolset name="msvc-6.5_stlport4"/>
  3667. <note refid="29" author="Daniel Wallin"/>
  3668. </mark-expected-failures>
  3669. <mark-expected-failures>
  3670. <test name="basics"/>
  3671. <test name="macros"/>
  3672. <test name="maybe"/>
  3673. <test name="sfinae"/>
  3674. <toolset name="gcc-4.2.1*"/>
  3675. <note author="Boris Gubenko" refid="42"/>
  3676. </mark-expected-failures>
  3677. </library>
  3678. <!-- pointer container -->
  3679. <library name="ptr_container">
  3680. <mark-unusable>
  3681. <toolset name="gcc-2.95.3*"/>
  3682. <toolset name="sunpro-5_3-sunos"/>
  3683. <toolset name="hp_cxx-65*"/>
  3684. <toolset name="borland-5.6*"/>
  3685. <toolset name="borland-5.8*"/>
  3686. <toolset name="borland-5.9*"/>
  3687. <toolset name="msvc-6.5*"/>
  3688. <toolset name="msvc-7.0"/>
  3689. <toolset name="dmc-8_47-stlport-4_5_3"/>
  3690. <toolset name="hp_cxx-65_042_tru64"/>
  3691. </mark-unusable>
  3692. <mark-expected-failures>
  3693. <test name="ptr_list"/>
  3694. <toolset name="gcc-4.0.*"/>
  3695. <note author="Thorsten Ottosen">
  3696. The error is due to problems in the standard library implementation.
  3697. It should be fixed in newer versions of the compiler.
  3698. </note>
  3699. </mark-expected-failures>
  3700. <mark-expected-failures>
  3701. <test name="ptr_list"/>
  3702. <toolset name="gcc-4.0.0*"/>
  3703. <note author="Thorsten Ottosen">
  3704. The error is due to problems in the standard library implementation.
  3705. It should be fixed in newer versions of the compiler.
  3706. </note>
  3707. </mark-expected-failures>
  3708. <mark-expected-failures>
  3709. <test name="incomplete_type_test"/>
  3710. <toolset name="cw-9.4"/>
  3711. <note author="Thorsten Ottosen">
  3712. This error seems to be a bug the compiler. Please submit a
  3713. patch.
  3714. </note>
  3715. </mark-expected-failures>
  3716. <mark-expected-failures>
  3717. <test name="iterator_test"/>
  3718. <toolset name="gcc-3.2.3*"/>
  3719. <toolset name="gcc-3.3.6*"/>
  3720. <toolset name="gcc"/>
  3721. <toolset name="qcc-3.3.5*"/>
  3722. <note author="Thorsten Ottosen">
  3723. This error seems to be a bug the standard library. Please submit a
  3724. patch.
  3725. </note>
  3726. </mark-expected-failures>
  3727. <mark-expected-failures>
  3728. <test name="no_exceptions"/>
  3729. <toolset name="cw-9.4"/>
  3730. <toolset name="sun-5.8"/>
  3731. <note author="Thorsten Ottosen">
  3732. This test fails because the test ptr_vector fails. Please see the note
  3733. for that test.
  3734. </note>
  3735. </mark-expected-failures>
  3736. <mark-expected-failures>
  3737. <test name="ptr_deque"/>
  3738. <toolset name="cw-9.4"/>
  3739. <toolset name="sun-5.8"/>
  3740. <note author="Thorsten Ottosen">
  3741. For sun the problem is that <code>insert(iterator,range)</code>
  3742. is not available due to partial ordering errors (the core library remains usable).
  3743. For codewarrior the problem is at least <code>std::auto_ptr</code> overloads (the core library remains usable).
  3744. </note>
  3745. </mark-expected-failures>
  3746. <mark-expected-failures>
  3747. <test name="ptr_list"/>
  3748. <toolset name="cw-9.4"/>
  3749. <toolset name="sun-5.8"/>
  3750. <note author="Thorsten Ottosen">
  3751. For sun the problem is that <code>insert(iterator,range)</code>
  3752. is not available due to partial ordering errors (the core library remains usable).
  3753. For codewarrior the problem is at least <code>std::auto_ptr</code> overloads (the core library remains usable).
  3754. </note>
  3755. </mark-expected-failures>
  3756. <mark-expected-failures>
  3757. <test name="ptr_vector"/>
  3758. <toolset name="cw-9.4"/>
  3759. <toolset name="sun-5.8"/>
  3760. <note author="Thorsten Ottosen">
  3761. For sun the problem is that <code>insert(iterator,range)</code>
  3762. is not available due to partial ordering errors (the core library remains usable).
  3763. For codewarrior the problem is at least <code>std::auto_ptr</code> overloads (the core library remains usable).
  3764. </note>
  3765. </mark-expected-failures>
  3766. <mark-expected-failures>
  3767. <test name="ptr_map"/>
  3768. <toolset name="hp_cxx-71_006_tru64"/>
  3769. <toolset name="cw-9.4"/>
  3770. <toolset name="sun-5.8"/>
  3771. <note author="Thorsten Ottosen">
  3772. For hp, this compiler bug is insignificant.
  3773. For sun the problem is that <code>transfer(range,ptr_map)</code>
  3774. is not available due to partial ordering errors (the core library remains usable).
  3775. For codewarrior the problem is not known so please submit a patch.
  3776. </note>
  3777. </mark-expected-failures>
  3778. <mark-expected-failures>
  3779. <test name="ptr_set"/>
  3780. <toolset name="cw-9.4"/>
  3781. <toolset name="sun-5.8"/>
  3782. <note author="Thorsten Ottosen">
  3783. For sun the problem is that <code>transfer(range,ptr_map)</code> and
  3784. <code>insert(range)</code>code>
  3785. is not available due to partial ordering errors (the core library remains usable).
  3786. For codewarrior the problem is at least <code>std::auto_ptr</code> overloads (the core library remains usable)..
  3787. </note>
  3788. </mark-expected-failures>
  3789. <mark-expected-failures>
  3790. <test name="serialization"/>
  3791. <toolset name="cw*"/>
  3792. <note author="Thorsten Ottosen">
  3793. This cause of this problem is unknown. Please submit a patch.
  3794. </note>
  3795. </mark-expected-failures>
  3796. <mark-expected-failures>
  3797. <test name="tree_test"/>
  3798. <toolset name="sun-5.8"/>
  3799. <note author="Thorsten Ottosen">
  3800. For sun the problem is due to Boost.Test.
  3801. </note>
  3802. </mark-expected-failures>
  3803. <mark-expected-failures>
  3804. <test name="tut1"/>
  3805. <toolset name="cw-9.4"/>
  3806. <note author="Thorsten Ottosen">
  3807. Seem like a bug in the compiler. Please submit a patch.
  3808. </note>
  3809. </mark-expected-failures>
  3810. <mark-expected-failures>
  3811. <test name="view_example"/>
  3812. <toolset name="cw-9.4"/>
  3813. <note author="Thorsten Ottosen">
  3814. Seem like a bug in the compiler. Please submit a patch.
  3815. </note>
  3816. </mark-expected-failures>
  3817. </library>
  3818. <!-- python -->
  3819. <library name="python">
  3820. <mark-unusable>
  3821. <toolset name="borland-5.5*"/>
  3822. <toolset name="borland-5.6*"/>
  3823. <toolset name="borland-5.8*"/>
  3824. <toolset name="borland-5.9*"/>
  3825. <note refid="2"/>
  3826. <note refid="17"/>
  3827. </mark-unusable>
  3828. <mark-unusable>
  3829. <toolset name="hp_cxx-65*"/>
  3830. <note author="Markus Schoepflin">
  3831. The library fails to compile because of an error in the C++
  3832. standard library implementation on this platform. It incorrectly
  3833. assumes that fpos_t is of an integral type, which is not always
  3834. the case. This is fixed in a later release.
  3835. </note>
  3836. </mark-unusable>
  3837. <mark-unusable>
  3838. <toolset name="sun-5.6*"/>
  3839. <note author="David Abrahams">
  3840. The old reasoning given for this markup, which applied
  3841. to sun-5.8*, was as follows. However, tuple's tests
  3842. seem to use the test library, which is apparently
  3843. completely broken on Sun. Therefore, I've backed off
  3844. the version number to sun-5.6 so I can see the actual
  3845. state of the failures.
  3846. <blockquote>This compiler seems to be having trouble digesting
  3847. Boost.Tuple. Until it can handle Boost.Tuple there's
  3848. little chance it will handle Boost.Python</blockquote>
  3849. </note>
  3850. </mark-unusable>
  3851. <mark-expected-failures>
  3852. <test name="object"/>
  3853. <toolset name="intel-10.*"/>
  3854. <note author="David Abrahams">
  3855. This compiler has a bug that causes silent misbehavior at runtime
  3856. when each of an assignment expression follows one of the following patterns:
  3857. <em>expr</em><code>.attr(</code><em>name</em><code>)</code>
  3858. or <em>expr</em><code>[</code><em>item</em><code>]</code>,
  3859. where <em>expr</em>
  3860. is-a <code>boost::python::object</code>. We've been
  3861. unable to find a workaround.
  3862. </note>
  3863. </mark-expected-failures>
  3864. <mark-expected-failures>
  3865. <test name="args"/>
  3866. <test name="auto_ptr"/>
  3867. <test name="builtin_convertors"/>
  3868. <test name="callbacks"/>
  3869. <test name="crossmod_exception"/>
  3870. <test name="data_members"/>
  3871. <test name="enum"/>
  3872. <test name="exception_translator"/>
  3873. <test name="extract"/>
  3874. <test name="implicit"/>
  3875. <test name="iterator"/>
  3876. <test name="list"/>
  3877. <test name="map_indexing_suite"/>
  3878. <test name="object"/>
  3879. <test name="opaque"/>
  3880. <test name="pickle2"/>
  3881. <test name="polymorphism"/>
  3882. <test name="polymorphism2"/>
  3883. <test name="shared_ptr"/>
  3884. <test name="slice"/>
  3885. <test name="test_pointer_adoption"/>
  3886. <test name="try"/>
  3887. <test name="vector_indexing_suite"/>
  3888. <test name="virtual_functions"/>
  3889. <toolset name="gcc-2.95.3-linux"/>
  3890. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  3891. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  3892. <note author="D. Abrahams">
  3893. The problems with GCC 2.x only occur when C++ exceptions are thrown and
  3894. the framework catches them, which happens quite often in the tests.
  3895. So technically GCC 2.x is usable if you're careful.
  3896. </note>
  3897. </mark-expected-failures>
  3898. <mark-expected-failures>
  3899. <test name="pointer_vector"/>
  3900. <test name="polymorphism"/>
  3901. <toolset name="hp_cxx*"/>
  3902. <note author="Markus Schoepflin" refid="29"/>
  3903. </mark-expected-failures>
  3904. <mark-expected-failures>
  3905. <test name="data_members"/>
  3906. <toolset name="acc"/>
  3907. <note author="Boris Gubenko">
  3908. This test assumes standard-compliant dependent template name lookup which
  3909. is performed by aCC6 only in strict ansi mode. Since on HP-UX/aCC6 boost
  3910. testing is done in the default compilation mode, this test fails to
  3911. compile on this platform (in strict ansi mode, it compiles and succeeds).
  3912. </note>
  3913. </mark-expected-failures>
  3914. </library>
  3915. <!-- random -->
  3916. <library name="random">
  3917. <mark-unusable>
  3918. <toolset name="msvc"/>
  3919. <toolset name="msvc-7.0"/>
  3920. <note author="B. Dawes" refid="10"/>
  3921. </mark-unusable>
  3922. <test name="random_test">
  3923. <mark-failure>
  3924. <toolset name="cw-8.3*"/>
  3925. <note author="B. Dawes" refid="3"/>
  3926. </mark-failure>
  3927. <mark-failure>
  3928. <toolset name="borland-5.6*"/>
  3929. <toolset name="borland-5.8*"/>
  3930. <toolset name="borland-5.9*"/>
  3931. <note author="B. Dawes" refid="2"/>
  3932. </mark-failure>
  3933. <mark-failure>
  3934. <toolset name="intel-vc71-win*"/>
  3935. <toolset name="intel-vc8-win*"/>
  3936. <note author="S. Slapeta" refid="1"/>
  3937. </mark-failure>
  3938. <mark-failure>
  3939. <toolset name="intel-linux-9.0"/>
  3940. <note author="John Maddock">
  3941. Reported to Intel as issue 409291, and confirmed
  3942. as a problem. Probably this relates to a specific
  3943. Linux-Kernal or GLibC version.
  3944. </note>
  3945. </mark-failure>
  3946. <mark-failure>
  3947. <toolset name="qcc-3.3.5*"/>
  3948. <note author="Jim Douglas" date="13 Feb 06">
  3949. Test fails with ranlux*_O1 RNGs when saving and recalling the state due to a bug in the
  3950. double to string conversion. The problem has been reported to QNX as PR29252.
  3951. </note>
  3952. </mark-failure>
  3953. <mark-failure>
  3954. <toolset name="gcc-*_tru64"/>
  3955. <note author="Markus Schoepflin">
  3956. This test fails because of limitations in the system assembler
  3957. version used by GCC. It most probably would pass if the test
  3958. were split into multiple source files.
  3959. </note>
  3960. </mark-failure>
  3961. <mark-failure>
  3962. <toolset name="gcc-3.4.6_linux_ia64"/>
  3963. <note author="Boris Gubenko">
  3964. It looks like a compiler issue: the test fails with gcc 3.4.6
  3965. and succeeds with gcc 4.2.1.
  3966. </note>
  3967. </mark-failure>
  3968. </test>
  3969. </library>
  3970. <!-- range -->
  3971. <library name="range">
  3972. <mark-unusable>
  3973. <toolset name="mipspro"/>
  3974. <toolset name="dmc-8_43-stlport-4_5_3"/>
  3975. <toolset name="gcc-2.95.3*"/>
  3976. <toolset name="sunpro-5_3-sunos"/>
  3977. </mark-unusable>
  3978. <mark-expected-failures>
  3979. <test name="array"/>
  3980. <toolset name="como-4_3_3*"/>
  3981. <toolset name="sun-5.8"/>
  3982. <toolset name="borland-5.6*"/>
  3983. <toolset name="borland-5.8*"/>
  3984. <toolset name="borland-5.9*"/>
  3985. <note refid="27" author="Thorsten Ottosen"/>
  3986. </mark-expected-failures>
  3987. <mark-expected-failures>
  3988. <test name="iterator_range"/>
  3989. <toolset name="msvc-stlport"/>
  3990. <toolset name="msvc-6.5_stlport4"/>
  3991. <toolset name="hp_cxx-65*"/>
  3992. <note author="Thorsten Ottosen">
  3993. For most compilers this is due to problems
  3994. with built-in arrays (notably char arrays) and operator==()
  3995. and operator!=() for iterator_range. Thus, not using built-in arrays
  3996. fixes the problem.
  3997. For other compilers it is simply a bug in the standard library.
  3998. </note>
  3999. </mark-expected-failures>
  4000. <mark-expected-failures>
  4001. <test name="reversible_range"/>
  4002. <toolset name="hp_cxx-65*"/>
  4003. <note author="Thorsten Ottosen">
  4004. This test probably fails because it uses built-in arrays. So do expect these
  4005. functions to work in normal code.
  4006. </note>
  4007. </mark-expected-failures>
  4008. <mark-expected-failures>
  4009. <test name="string"/>
  4010. <toolset name="hp_cxx-65*"/>
  4011. <toolset name="sun-5.8"/>
  4012. <toolset name="borland-5.6*"/>
  4013. <toolset name="borland-5.8*"/>
  4014. <toolset name="borland-5.9*"/>
  4015. <note author="Thorsten Ottosen">
  4016. The string functionality is expected to work if
  4017. the user employs std::string and stays away from built-in
  4018. arrays.
  4019. </note>
  4020. </mark-expected-failures>
  4021. <mark-expected-failures>
  4022. <test name="sub_range"/>
  4023. <toolset name="msvc-8.0"/>
  4024. <toolset name="intel-vc8-*"/>
  4025. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  4026. <toolset name="msvc-6.5_stlport4"/>
  4027. <toolset name="msvc-7.0"/>
  4028. <toolset name="msvc-7.1_stlport4"/>
  4029. <toolset name="hp_cxx-65*"/>
  4030. <note refid="6" author="Thorsten Ottosen">
  4031. For most compilers this is due to problems
  4032. with built-in arrays (notably char arrays) and operator==()
  4033. and operator!=() for iterator_range. Thus, not using built-in arrays
  4034. fixes the problem.
  4035. </note>
  4036. </mark-expected-failures>
  4037. <mark-expected-failures>
  4038. <test name="sub_range"/>
  4039. <toolset name="cw-9_5-darwin"/>
  4040. <note author="Thorsten Ottosen">
  4041. At the time of release I couldn't figure out why this was failing.
  4042. Anyway, the failure is not very important; also, the well-definedness of
  4043. "singularity" of an iterator range is likely to change.
  4044. </note>
  4045. </mark-expected-failures>
  4046. <mark-expected-failures>
  4047. <test name="extension_mechanism"/>
  4048. <toolset name="msvc-6.5*"/>
  4049. <toolset name="msvc-7.0"/>
  4050. <note author="Thorsten Ottosen">
  4051. The test requires support for Argument Dependent Lookup (ADL)
  4052. which the compiler in question does not provide.
  4053. </note>
  4054. </mark-expected-failures>
  4055. </library>
  4056. <!-- regex -->
  4057. <library name="regex">
  4058. <test name="regex_token_iterator_eg_2">
  4059. <mark-failure>
  4060. <toolset name="msvc-6.5"/>
  4061. <note author="J. Maddock"/>
  4062. </mark-failure>
  4063. </test>
  4064. <test name="posix_api_check">
  4065. <mark-failure>
  4066. <toolset name="como-4_3_3-vc7*"/>
  4067. <note author="J. Maddock"/>
  4068. </mark-failure>
  4069. </test>
  4070. <test name="wide_posix_api_check">
  4071. <mark-failure>
  4072. <toolset name="qcc-3.3.5_gpp"/>
  4073. <note author="J. Maddock">
  4074. No Wide character support on this platform.
  4075. </note>
  4076. </mark-failure>
  4077. </test>
  4078. <test name="wide_posix_api_check_c">
  4079. <mark-failure>
  4080. <toolset name="qcc-3.3.5_gpp"/>
  4081. <note author="J. Maddock">
  4082. No Wide character support on this platform.
  4083. </note>
  4084. </mark-failure>
  4085. </test>
  4086. <test name="*_dll">
  4087. <mark-failure>
  4088. <toolset name="*como-4_3_3*"/>
  4089. <note author="J. Maddock">
  4090. This test requires features that are unsupported by Como:
  4091. use and building of dll's mainly.
  4092. </note>
  4093. </mark-failure>
  4094. </test>
  4095. <mark-expected-failures>
  4096. <test name="static_mutex_test"/>
  4097. <test name="test_grep"/>
  4098. <toolset name="*como-4_3_3*"/>
  4099. <note author="J. Maddock">
  4100. This test requires features that are unsupported by Como:
  4101. use and building of dll's mainly.
  4102. </note>
  4103. </mark-expected-failures>
  4104. <mark-expected-failures>
  4105. <test name="regex_regress_threaded"/>
  4106. <toolset name="gcc-*_tru64"/>
  4107. <note author="J. Maddock">
  4108. GCC on tru64 appears not to cope with C++ exceptions
  4109. thrown from within threads.
  4110. </note>
  4111. </mark-expected-failures>
  4112. <test name="concept_check">
  4113. <mark-failure>
  4114. <toolset name="msvc-8.0"/>
  4115. <toolset name="sunpro-5_3-sunos"/>
  4116. <toolset name="sun-5.8"/>
  4117. <toolset name="borland-5.8*"/>
  4118. <toolset name="borland-5.9*"/>
  4119. <toolset name="qcc-3.3.5_cpp"/>
  4120. <note author="John Maddock" refid="2"/>
  4121. </mark-failure>
  4122. </test>
  4123. <test name="test_grep">
  4124. <mark-failure>
  4125. <toolset name="gcc-2.95.3-linux"/>
  4126. <toolset name="sunpro-5_3-sunos"/>
  4127. <toolset name="sun-5.8"/>
  4128. <toolset name="msvc-6.5*"/>
  4129. <toolset name="msvc-7.0"/>
  4130. <note author="John Maddock">
  4131. This test fails because a dependency (Boost.Program Options) doesn't build with this compiler.
  4132. </note>
  4133. </mark-failure>
  4134. </test>
  4135. <test name="test_grep">
  4136. <mark-failure>
  4137. <toolset name="borland-5.9*"/>
  4138. <note author="A.Meredith">
  4139. This test fails because a dependency (Boost.Program Options) which currently doesn't build with this compiler.
  4140. </note>
  4141. </mark-failure>
  4142. </test>
  4143. <mark-expected-failures>
  4144. <test name="regex_regress"/>
  4145. <test name="regex_regress_dll"/>
  4146. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  4147. <note author="John Maddock" refid="29"/>
  4148. </mark-expected-failures>
  4149. <mark-expected-failures>
  4150. <test name="regex_regress"/>
  4151. <test name="regex_regress_threaded"/>
  4152. <test name="regex_regress_dll"/>
  4153. <toolset name="borland*"/>
  4154. <note author="John Maddock">
  4155. There appears to be a linker bug that prevents these
  4156. projects from building, see http://qc.borland.com/wc/qcmain.aspx?d=32020.
  4157. </note>
  4158. </mark-expected-failures>
  4159. <mark-expected-failures>
  4160. <test name="unicode_iterator_test"/>
  4161. <toolset name="borland-5.6*"/>
  4162. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  4163. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  4164. <note author="John Maddock" refid="6"/>
  4165. </mark-expected-failures>
  4166. <mark-expected-failures>
  4167. <test name="regex_regress"/>
  4168. <test name="regex_regress_threaded"/>
  4169. <test name="regex_regress_dll"/>
  4170. <toolset name="borland*"/>
  4171. <note author="John Maddock">
  4172. There appears to be a linker bug that prevents these
  4173. projects from building, see http://qc.borland.com/wc/qcmain.aspx?d=32020.
  4174. </note>
  4175. </mark-expected-failures>
  4176. <mark-expected-failures>
  4177. <test name="regex_timer"/>
  4178. <toolset name="msvc-6.5_stlport4"/>
  4179. <note author="John Maddock">
  4180. Test fails due to unresilved externals from STLport: appears to be
  4181. an STLport bug. </note>
  4182. </mark-expected-failures>
  4183. <mark-expected-failures>
  4184. <test name="regex_regress_threaded"/>
  4185. <test name="static_mutex_test"/>
  4186. <toolset name="msvc-6.5_stlport*"/>
  4187. <toolset name="msvc-7.1_stlport*"/>
  4188. <toolset name="msvc-8.0"/>
  4189. <toolset name="gcc-cygwin*"/>
  4190. <note author="John Maddock">
  4191. These tests pass when run directly from the command line,
  4192. but fail when run under the regression test script.
  4193. The issue has never been fully pinned down, but appears
  4194. to be related to how long the tests take to run.</note>
  4195. </mark-expected-failures>
  4196. </library>
  4197. <!-- signals -->
  4198. <library name="signals">
  4199. <mark-unusable>
  4200. <toolset name="sunpro-5_3-sunos"/>
  4201. </mark-unusable>
  4202. <test name="signal_test">
  4203. <mark-failure>
  4204. <toolset name="cw-8.3*"/>
  4205. <note author="B. Dawes" refid="2"/>
  4206. </mark-failure>
  4207. <mark-failure>
  4208. <toolset name="borland-5.6*"/>
  4209. <toolset name="borland-5.8*"/>
  4210. <toolset name="borland-5.9*"/>
  4211. <toolset name="msvc-6.5"/>
  4212. <toolset name="msvc-7.0"/>
  4213. <note author="B. Dawes" refid="3"/>
  4214. </mark-failure>
  4215. </test>
  4216. </library>
  4217. <!-- statechart -->
  4218. <library name="statechart">
  4219. <mark-unusable>
  4220. <toolset name="borland-5*"/>
  4221. <toolset name="cw-8*"/>
  4222. <toolset name="dmc-8*"/>
  4223. <toolset name="gcc-2*"/>
  4224. <toolset name="hp_cxx-65*"/>
  4225. <toolset name="msvc-6.5*"/>
  4226. <toolset name="msvc-7.0*"/>
  4227. <toolset name="pgi-7*"/>
  4228. <toolset name="sun-5*"/>
  4229. <note author="Andreas Huber" refid="17"/>
  4230. </mark-unusable>
  4231. <mark-unusable>
  4232. <toolset name="acc-pa_risc"/>
  4233. <note author="Andreas Huber">
  4234. Marked unusable because TransitionTest.cpp compiled but did
  4235. the wrong thing at runtime!
  4236. </note>
  4237. </mark-unusable>
  4238. <mark-expected-failures>
  4239. <test name="DllTestNative"/>
  4240. <toolset name="gcc-mingw-4.2*"/>
  4241. <note author="Andreas Huber">
  4242. A runtime failure of this test indicates that the RTTI
  4243. implementation of this platform is broken in conjunction
  4244. with dynamic linking.
  4245. </note>
  4246. </mark-expected-failures>
  4247. <mark-expected-failures>
  4248. <test name="DllTestNormal"/>
  4249. <toolset name="*cygwin*"/>
  4250. <toolset name="*mingw*"/>
  4251. <toolset name="hp_cxx-71*"/>
  4252. <toolset name="cw-9*"/>
  4253. <note author="Andreas Huber">
  4254. A runtime failure of this test indicates that this platform
  4255. <b>dynamically</b> links code in a manner such that under
  4256. certain circumstances more than one instance of a
  4257. header-defined static class member can exist at runtime. See
  4258. <a href="http://www.boost.org/libs/statechart/doc/faq.html#Dll">here</a>
  4259. for more information.
  4260. </note>
  4261. </mark-expected-failures>
  4262. <mark-expected-failures>
  4263. <test name="LibTestNormal"/>
  4264. <toolset name="hp_cxx-71*"/>
  4265. <note author="Andreas Huber">
  4266. A runtime failure of this test indicates that this platform
  4267. <b>statically</b> links code in a manner such that under
  4268. certain circumstances more than one instance of a
  4269. header-defined static class member can exist at runtime. See
  4270. <a href="http://www.boost.org/libs/statechart/doc/faq.html#Dll">here</a>
  4271. for more information.
  4272. </note>
  4273. </mark-expected-failures>
  4274. <mark-expected-failures reason="?">
  4275. <test name="CameraExample"/>
  4276. <test name="CustomReactionTest*"/>
  4277. <test name="PerformanceExample"/>
  4278. <toolset name="cw-9*"/>
  4279. <note author="Andreas Huber" refid="29"/>
  4280. </mark-expected-failures>
  4281. <mark-expected-failures reason="?">
  4282. <test name="CustomReactionTest*"/>
  4283. <toolset name="hp_cxx-71*"/>
  4284. <note author="Andreas Huber" refid="29"/>
  4285. </mark-expected-failures>
  4286. <mark-expected-failures reason="?">
  4287. <test name="TransitionTest*"/>
  4288. <toolset name="cw-9*"/>
  4289. <toolset name="hp_cxx-71*"/>
  4290. <toolset name="intel-linux-9.1"/>
  4291. <toolset name="intel-linux-10*"/>
  4292. <toolset name="intel-darwin-9.1"/>
  4293. <toolset name="intel-darwin-10*"/>
  4294. <toolset name="vacpp-8.0"/>
  4295. <note author="Andreas Huber" refid="29"/>
  4296. </mark-expected-failures>
  4297. <mark-expected-failures reason="?">
  4298. <test name="TransitionTestBoth"/>
  4299. <test name="TransitionTestNative"/>
  4300. <toolset name="pathscale-3.1"/>
  4301. <note author="Andreas Huber" refid="29"/>
  4302. </mark-expected-failures>
  4303. <mark-expected-failures reason="?">
  4304. <test name="InvalidTransitionTest1Relaxed"/>
  4305. <test name="StopWatchExample"/>
  4306. <toolset name="vacpp-8.0"/>
  4307. <note author="Andreas Huber" refid="29"/>
  4308. </mark-expected-failures>
  4309. <mark-expected-failures reason="?">
  4310. <test name="CustomReactionTest*"/>
  4311. <toolset name="acc*"/>
  4312. <note author="Andreas Huber" refid="29"/>
  4313. </mark-expected-failures>
  4314. <mark-expected-failures>
  4315. <test name="StopWatch*"/>
  4316. <toolset name="msvc-8.0~wm5~stlport5.1"/>
  4317. <note author="Andreas Huber">
  4318. This looks like a std library or configuration bug. Since
  4319. difftime is only used in the example, this failure can be
  4320. ignored.
  4321. </note>
  4322. </mark-expected-failures>
  4323. <mark-expected-failures reason="?">
  4324. <test name="DllTest*"/>
  4325. <toolset name="cygwin-gcc-stdcxx-4.2.1"/>
  4326. <toolset name="msvc-8.0~wm5~stlport5.1"/>
  4327. <note author="Andreas Huber" refid="29"/>
  4328. </mark-expected-failures>
  4329. </library>
  4330. <!-- static_assert -->
  4331. <library name="static_assert">
  4332. <test name="static_assert_example_2">
  4333. <mark-failure>
  4334. <toolset name="sunpro-5_3-sunos"/>
  4335. <note author="J. Maddock" refid="4"/>
  4336. </mark-failure>
  4337. </test>
  4338. <test name="static_assert_test">
  4339. <mark-failure>
  4340. <toolset name="borland-5.6*"/>
  4341. <toolset name="borland-5.8*"/>
  4342. <toolset name="borland-5.9*"/>
  4343. <note author="A.Meredith" date="26 May 2006">
  4344. This test runs without problem on Borland compilers,
  4345. which means the static assertion is not being caught.
  4346. </note>
  4347. </mark-failure>
  4348. </test>
  4349. </library>
  4350. <!-- system -->
  4351. <library name="system">
  4352. <mark-unusable>
  4353. <toolset name="borland-5.6*"/>
  4354. <toolset name="borland-5.8*"/>
  4355. <note author="Beman Dawes">
  4356. This compiler does not support enable_if, which is required
  4357. by Boost.System.
  4358. </note>
  4359. </mark-unusable>
  4360. </library>
  4361. <!-- test -->
  4362. <library name="test">
  4363. <mark-expected-failures>
  4364. <test name="ifstream_line_iterator_test"/>
  4365. <toolset name="sunpro*"/>
  4366. <note author="Gennadiy Rozental" refid="2"/>
  4367. </mark-expected-failures>
  4368. <mark-expected-failures>
  4369. <test name="custom_exception_test"/>
  4370. <toolset name="msvc-6.5*"/>
  4371. <note author="Gennadiy Rozental" refid="2"/>
  4372. </mark-expected-failures>
  4373. <mark-expected-failures>
  4374. <test name="errors_handling_test"/>
  4375. <toolset name="*como-4_3_3*"/>
  4376. <note author="B. Dawes" refid="3"/>
  4377. </mark-expected-failures>
  4378. <mark-expected-failures>
  4379. <test name="token_iterator_test"/>
  4380. <toolset name="msvc-6.5*"/>
  4381. <toolset name="iw-7_1-vc6"/>
  4382. <toolset name="msvc-7.0"/>
  4383. <toolset name="msvc-7.0-stlport"/>
  4384. <toolset name="gcc-2.95.3-linux"/>
  4385. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  4386. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  4387. <toolset name="hp_cxx-65*"/>
  4388. <toolset name="sunpro*"/>
  4389. <toolset name="borland*"/>
  4390. <note author="Gennadiy Rozental" refid="3"/>
  4391. </mark-expected-failures>
  4392. <mark-expected-failures>
  4393. <test name="token_iterator_test"/>
  4394. <toolset name="qcc-3.3.5*gpp"/>
  4395. <note author="Jim Douglas" date="14 Feb 06" refid="36"/>
  4396. </mark-expected-failures>
  4397. <mark-expected-failures>
  4398. <test name="test_fp_comparisons"/>
  4399. <toolset name="msvc-6.5*"/>
  4400. <toolset name="msvc-7.0"/>
  4401. <toolset name="msvc-7.0-stlport"/>
  4402. <toolset name="borland-5.6*"/>
  4403. <toolset name="borland-5.8*"/>
  4404. <toolset name="borland-5.9*"/>
  4405. <note author="Gennadiy Rozental" refid="3"/>
  4406. </mark-expected-failures>
  4407. <mark-expected-failures reason="?">
  4408. <test name="basic_cstring_test"/>
  4409. <toolset name="gcc-2.95.3-linux"/>
  4410. <note refid="29"/>
  4411. </mark-expected-failures>
  4412. <mark-expected-failures>
  4413. <test name="errors_handling_test"/>
  4414. <test name="test_tools_test"/>
  4415. <toolset name="cw-9_5-darwin"/>
  4416. <note refid="29" author="Doug Gregor"/>
  4417. </mark-expected-failures>
  4418. <mark-expected-failures>
  4419. <test name="test_tools_test"/>
  4420. <toolset name="cw-9.4"/>
  4421. <note refid="29" author="Doug Gregor"/>
  4422. </mark-expected-failures>
  4423. <mark-expected-failures>
  4424. <test name="prg_exec_fail2"/>
  4425. <toolset name="darwin-4.0.1"/>
  4426. <toolset name="gcc-3.4.2_hpux_pa_risc"/>
  4427. <toolset name="gcc-3.4.6_linux_ia64"/>
  4428. <note author="Vladimir Prus">
  4429. The test verifies that Boost.Test detects division by
  4430. zero. It fails on PowerPC, PA-RISC and Linux ia64. On PowerPC
  4431. processors, division has an undefined result. The compiler
  4432. has to emit extra code to assert that the divisor isn't zero.
  4433. Compiler options -fno-trapping-math and -fnon-call-exceptions
  4434. might affect this. However, in default configuration
  4435. no check is done, and division by zero is not detected.
  4436. </note>
  4437. </mark-expected-failures>
  4438. <mark-expected-failures>
  4439. <test name="prg_exec_fail3"/>
  4440. <toolset name="cw-9.4"/>
  4441. <toolset name="gcc-3.4.6_linux_ia64"/>
  4442. <note author="Vladimir Prus">
  4443. The test appears to test that failed assertion result
  4444. in non-zero exit status. That seems to be not the
  4445. case, for unknown reasons.
  4446. </note>
  4447. </mark-expected-failures>
  4448. </library>
  4449. <!-- thread -->
  4450. <library name="thread">
  4451. <mark-unusable>
  4452. <toolset name="*como-4_3_3*"/>
  4453. <note author="B. Dawes" refid="10"/>
  4454. </mark-unusable>
  4455. <test name="test_mutex">
  4456. <mark-failure>
  4457. <toolset name="msvc-7.0"/>
  4458. <note author="B. Dawes" refid="0"/>
  4459. <note author="B. Dawes" refid="6"/>
  4460. </mark-failure>
  4461. </test>
  4462. <mark-expected-failures>
  4463. <test name="*_lib"/>
  4464. <toolset name="intel-8.0-linux*"/>
  4465. <note author="Aleksey Gurtovoy">
  4466. This failure is caused by a conflict between the compiler
  4467. and the testing environment: the tests are run on a platform with
  4468. <i>too recent</i> version of glibc, which is not currently
  4469. supported by the compiler vendor (Intel).
  4470. If you are having the same problem and <i>really</i> want to make
  4471. things work, renaming <code>strol</code> symbol in the
  4472. compiler's static runtime library (<code>libcprts.a</code>) to
  4473. something else is known to resolve the issue.
  4474. </note>
  4475. </mark-expected-failures>
  4476. <mark-expected-failures reason="?">
  4477. <test name="*_lib"/>
  4478. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  4479. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  4480. <note author="Aleksey Gurtovoy" refid="29"/>
  4481. </mark-expected-failures>
  4482. <!--
  4483. It is unclear why this has been marked as expected failure. The
  4484. pthread_timedwait is giving an error code of EINVAL, which needs to
  4485. be resolved, since the timed behaviour is affected by this bug.
  4486. Marked as a failure again by Roland Schwarz, 2007-01-12
  4487. <mark-expected-failures>
  4488. <test name="test_mutex"/>
  4489. <test name="test_mutex_lib"/>
  4490. <toolset name="qcc-3.3*"/>
  4491. <note author="Jim Douglas" date="13 Feb 06" refid="16"/>
  4492. </mark-expected-failures>
  4493. -->
  4494. <mark-expected-failures>
  4495. <test name="test_tss_lib"/>
  4496. <toolset name="borland-*"/>
  4497. <toolset name="cw-9.4"/>
  4498. <note author="Roland Schwarz" date="2006-12-14">
  4499. When a thread ends, tss data needs to be cleaned up. This process
  4500. is mostly automatic. When threads are launched by the Boost.Thread API
  4501. cleanup is handled by the library implementation. For threads, launched
  4502. by the native operating system API it is not possible to get this cleanup
  4503. on every compiler/platform. A warning (error) will be present in this case,
  4504. which cleary states this fact. It is recommended to start threads only
  4505. by means of the Boost.Thread API if you need to avoid the leaks that appear
  4506. on the end of the thread. If this is not possible the cleanup can be invoked
  4507. from user code before the process actually ends. For library implementors
  4508. this means to call these functions during library initialization and
  4509. finalization.
  4510. </note>
  4511. </mark-expected-failures>
  4512. <mark-expected-failures>
  4513. <test name="test_thread_move"/>
  4514. <test name="test_thread_move_lib"/>
  4515. <toolset name="borland-*"/>
  4516. <note author="Anthony Williams" date="2007-12-14">
  4517. The Borland compiler fails to bind rvalues to the thread move constructor,
  4518. choosing instead to bind them to the private (and unimplemented) copy constructor.
  4519. </note>
  4520. </mark-expected-failures>
  4521. <mark-expected-failures>
  4522. <test name="test_hardware_concurrency"/>
  4523. <test name="test_hardware_concurrency_lib"/>
  4524. <toolset name="*tru64"/>
  4525. <note author="Anthony Williams" date="2007-12-21">
  4526. boost::thread::hardware_concurrency is not implemented and always returns 0 on this platform.
  4527. </note>
  4528. </mark-expected-failures>
  4529. </library>
  4530. <!-- tuple -->
  4531. <library name="tuple">
  4532. <mark-unusable>
  4533. <toolset name="sunpro-5_3-sunos"/>
  4534. </mark-unusable>
  4535. </library>
  4536. <!-- type_traits -->
  4537. <library name="type_traits">
  4538. <mark-expected-failures>
  4539. <test name="function_traits_test"/>
  4540. <test name="remove_bounds_test"/>
  4541. <test name="remove_const_test"/>
  4542. <test name="remove_cv_test"/>
  4543. <test name="remove_pointer_test"/>
  4544. <test name="remove_reference_test"/>
  4545. <test name="remove_volatile_test"/>
  4546. <test name="decay_test"/>
  4547. <test name="extent_test"/>
  4548. <test name="remove_extent_test"/>
  4549. <test name="remove_all_extents_test"/>
  4550. <test name="rank_test"/>
  4551. <test name="is_unsigned_test"/>
  4552. <toolset name="msvc-6.5*"/>
  4553. <toolset name="msvc-7.0"/>
  4554. <note author="Aleksey Gurtovoy">
  4555. This failure is caused by the lack of compiler support for class template
  4556. partial specialization. A limited subset of the tested functionality is
  4557. available on the compiler through a user-side workaround (see
  4558. <a href="http://www.boost.org/libs/type_traits/index.html#transformations">
  4559. http://www.boost.org/libs/type_traits/index.html#transformations</a> for
  4560. details).
  4561. </note>
  4562. </mark-expected-failures>
  4563. <mark-expected-failures>
  4564. <test name="decay_test"/>
  4565. <test name="extent_test"/>
  4566. <test name="is_base_and_derived_test"/>
  4567. <test name="is_base_of_test"/>
  4568. <test name="is_convertible_test"/>
  4569. <test name="rank_test"/>
  4570. <test name="remove_all_extents_test"/>
  4571. <test name="remove_bounds_test"/>
  4572. <test name="remove_const_test"/>
  4573. <test name="remove_extent_test"/>
  4574. <test name="remove_pointer_test"/>
  4575. <test name="remove_volatile_test"/>
  4576. <test name="tricky_add_pointer_test"/>
  4577. <test name="tricky_function_type_test"/>
  4578. <test name="tricky_incomplete_type_test"/>
  4579. <test name="make_signed_test"/>
  4580. <test name="make_unsigned_test"/>
  4581. <toolset name="borland-5.6*"/>
  4582. <toolset name="borland-5.8*"/>
  4583. <toolset name="borland-5.9*"/>
  4584. <note author="John Maddock" refid="2"/>
  4585. </mark-expected-failures>
  4586. <mark-expected-failures>
  4587. <test name="promote_basic_test"/>
  4588. <test name="promote_enum_test"/>
  4589. <test name="promote_mpl_test"/>
  4590. <test name="tricky_partial_spec_test"/>
  4591. <toolset name="borland-5.6*"/>
  4592. <toolset name="borland-5.8*"/>
  4593. <toolset name="borland-5.9*"/>
  4594. <note author="AlisdairM" refid="2"/>
  4595. </mark-expected-failures>
  4596. <test name="tricky_is_enum_test">
  4597. <mark-failure>
  4598. <toolset name="borland-5.6*"/>
  4599. <toolset name="borland-5.8*"/>
  4600. <toolset name="borland-5.9*"/>
  4601. <toolset name="msvc-6.5*"/>
  4602. <toolset name="gcc-2.95.3-*"/>
  4603. </mark-failure>
  4604. </test>
  4605. <test name="tricky_incomplete_type_test">
  4606. <mark-failure>
  4607. <toolset name="iw-7_1*"/>
  4608. <note author="John Maddock" refid="2"/>
  4609. </mark-failure>
  4610. </test>
  4611. <test name="is_abstract_test">
  4612. <mark-failure>
  4613. <toolset name="borland-5.6*"/>
  4614. <toolset name="borland-5.8*"/>
  4615. <toolset name="borland-5.9*"/>
  4616. <toolset name="cw-8.3*"/>
  4617. <toolset name="cw-9.3*"/>
  4618. <toolset name="cw-9.4"/>
  4619. <toolset name="cw-9.5"/>
  4620. <toolset name="msvc-6.5*"/>
  4621. <toolset name="msvc-7.0"/>
  4622. <toolset name="mingw-3_3*"/>
  4623. <toolset name="gcc-2*"/>
  4624. <toolset name="gcc-3.2*"/>
  4625. <toolset name="gcc-3.3*"/>
  4626. <toolset name="qcc-3.3*"/>
  4627. <toolset name="sunpro-5_3-sunos"/>
  4628. <toolset name="hp_cxx-65*"/>
  4629. <toolset name="darwin"/>
  4630. <toolset name="mingw"/>
  4631. <note author="Aleksey Gurtovoy">
  4632. This functionality is available only on compilers that implement C++ Core Language
  4633. <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#337">Defect Report 337</a>.
  4634. </note>
  4635. </mark-failure>
  4636. </test>
  4637. <mark-expected-failures>
  4638. <test name="is_polymorphic_test"/>
  4639. <toolset name="gcc-2.95.3-stlport-*"/>
  4640. <note author="Doug Gregor" refid="3"/>
  4641. </mark-expected-failures>
  4642. <mark-expected-failures>
  4643. <test name="decay_test"/>
  4644. <test name="extent_test"/>
  4645. <test name="has_nothrow_assign_test"/>
  4646. <test name="has_nothrow_constr_test"/>
  4647. <test name="has_nothrow_copy_test"/>
  4648. <test name="has_trivial_assign_test"/>
  4649. <test name="has_trivial_constr_test"/>
  4650. <test name="has_trivial_copy_test"/>
  4651. <test name="has_trivial_destructor_test"/>
  4652. <test name="is_array_test"/>
  4653. <test name="is_base_and_derived_test"/>
  4654. <test name="is_base_of_test"/>
  4655. <test name="is_class_test"/>
  4656. <test name="is_convertible_test"/>
  4657. <test name="is_object_test"/>
  4658. <test name="is_pod_test"/>
  4659. <test name="is_polymorphic_test"/>
  4660. <test name="rank_test"/>
  4661. <test name="remove_all_extents_test"/>
  4662. <test name="remove_bounds_test"/>
  4663. <test name="remove_extent_test"/>
  4664. <toolset name="sunpro-5_3-sunos"/>
  4665. <note author="John Maddock">
  4666. The Type Traits library is broken when used with Sunpro-5.3 and the
  4667. argument to the template is an array or function type. Most other argument types
  4668. do work as expected: in other words the functionality is limited
  4669. with this compiler, but not so much as to render the library unuseable.
  4670. </note>
  4671. </mark-expected-failures>
  4672. <mark-expected-failures>
  4673. <test name="is_empty_test"/>
  4674. <test name="is_function_test"/>
  4675. <test name="is_member_func_test"/>
  4676. <test name="is_member_obj_test"/>
  4677. <test name="is_reference_test"/>
  4678. <test name="tricky_function_type_test"/>
  4679. <test name="tricky_incomplete_type_test"/>
  4680. <test name="tricky_is_enum_test"/>
  4681. <toolset name="sunpro-5_3-sunos"/>
  4682. <note author="John Maddock" refid="2"/>
  4683. </mark-expected-failures>
  4684. <mark-expected-failures>
  4685. <test name="decay_test"/>
  4686. <test name="extent_test"/>
  4687. <test name="is_abstract_test"/>
  4688. <test name="is_empty_test"/>
  4689. <test name="is_function_test"/>
  4690. <test name="is_member_func_test"/>
  4691. <test name="is_member_obj_test"/>
  4692. <test name="is_object_test"/>
  4693. <test name="is_reference_test"/>
  4694. <test name="rank_test"/>
  4695. <test name="tricky_function_type_test"/>
  4696. <toolset name="sun-5.8"/>
  4697. <note author="John Maddock">
  4698. The Type Traits library is broken when used with Sunpro-5.8 and the
  4699. argument to the template is a function type. Most other argument types
  4700. do work as expected: in other words the functionality is limited
  4701. with this compiler, but not so much as to render the library unuseable.
  4702. </note>
  4703. </mark-expected-failures>
  4704. <mark-expected-failures>
  4705. <test name="tricky_partial_spec_test"/>
  4706. <toolset name="sun-5.9"/>
  4707. <note author="John Maddock">
  4708. This fails with an internal compiler error,
  4709. there is no workaround as yet.
  4710. </note>
  4711. </mark-expected-failures>
  4712. <mark-expected-failures>
  4713. <test name="tricky_function_type_test"/>
  4714. <test name="is_const_test"/>
  4715. <test name="is_volatile_test"/>
  4716. <test name="is_convertible_test"/>
  4717. <toolset name="gcc-2*"/>
  4718. <note author="John Maddock" refid="2"/>
  4719. </mark-expected-failures>
  4720. <mark-expected-failures>
  4721. <test name="aligned_storage_test"/>
  4722. <toolset name="cw-8.3"/>
  4723. <note author="John Maddock">
  4724. Older versions of MWCW incorrectly align pointers to member functions
  4725. (they use 12-byte boundaries, rather than a power-of-2 boundary),
  4726. leading to alignment_of / aligned_storage
  4727. to fail with these types on this compiler.
  4728. </note>
  4729. </mark-expected-failures>
  4730. </library>
  4731. <!-- tr1 -->
  4732. <library name="tr1">
  4733. <mark-unusable>
  4734. <toolset name="msvc-7.0"/>
  4735. <toolset name="msvc-6*"/>
  4736. <note author="John Maddock">
  4737. VC6/7 has a buggy using declaration syntax which
  4738. basically makes it impossible to implement the
  4739. namespace forwarding that this library relies upon.
  4740. See KB article 263630 here: http://support.microsoft.com/default.aspx?scid=kb;en-us;263630
  4741. </note>
  4742. </mark-unusable>
  4743. <mark-unusable>
  4744. <toolset name="cw-*"/>
  4745. <note author="John Maddock">
  4746. Metrowerks Codeworrier has partial TR1 support built in
  4747. which conflicts with this implementation. Porting to this
  4748. compiler is almost certainly possible, but will require some
  4749. work by someone who has this compiler.
  4750. </note>
  4751. </mark-unusable>
  4752. <mark-expected-failures>
  4753. <test name="test_mem_fn_tricky"/>
  4754. <test name="test_bind_tricky"/>
  4755. <test name="test_ref_wrapper_tricky"/>
  4756. <test name="test_function_tricky"/>
  4757. <test name="std_test_mem_fn_tricky"/>
  4758. <test name="std_test_bind_tricky"/>
  4759. <test name="std_test_ref_wrapper_tricky"/>
  4760. <test name="std_test_function_tricky"/>
  4761. <test name="std_test_reference_wrapper_tricky"/>
  4762. <test name="test_reference_wrapper_tricky"/>
  4763. <toolset name="*"/>
  4764. <note author="John Maddock">
  4765. These tests test features that are not supported in the
  4766. current Boost implementations of TR1 components, they will
  4767. currently fail on all compilers, unless that compiler has
  4768. native TR1 support.
  4769. </note>
  4770. </mark-expected-failures>
  4771. <mark-expected-failures>
  4772. <test name="test_regex"/>
  4773. <test name="std_test_regex"/>
  4774. <test name="test_hash"/>
  4775. <test name="std_test_hash"/>
  4776. <toolset name="mingw*"/>
  4777. <toolset name="qcc*gpp"/>
  4778. <toolset name="gcc-2*"/>
  4779. <note author="John Maddock">
  4780. These tests fail on this platform due to a lack of
  4781. wide character support.
  4782. </note>
  4783. </mark-expected-failures>
  4784. <mark-expected-failures>
  4785. <test name="test_regex"/>
  4786. <test name="std_test_regex"/>
  4787. <toolset name="gcc-mingw*"/>
  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_hash"/>
  4795. <test name="std_test_hash"/>
  4796. <toolset name="gcc-cygwin*"/>
  4797. <note author="John Maddock">
  4798. These tests fail on this platform due to incomplete
  4799. wide character support.
  4800. </note>
  4801. </mark-expected-failures>
  4802. <mark-expected-failures>
  4803. <test name="test_array"/>
  4804. <test name="std_test_array"/>
  4805. <test name="test_array_tricky"/>
  4806. <test name="std_test_array_tricky"/>
  4807. <test name="test_complex"/>
  4808. <test name="std_test_complex"/>
  4809. <test name="test_function"/>
  4810. <test name="std_test_function"/>
  4811. <test name="test_mem_fn"/>
  4812. <test name="std_test_mem_fn"/>
  4813. <test name="test_random"/>
  4814. <test name="std_test_random"/>
  4815. <test name="test_regex"/>
  4816. <test name="std_test_regex"/>
  4817. <test name="test_result_of"/>
  4818. <test name="std_test_result_of"/>
  4819. <test name="test_shared_ptr"/>
  4820. <test name="std_test_shared_ptr"/>
  4821. <test name="test_tr1_include"/>
  4822. <test name="std_test_tr1_include"/>
  4823. <test name="test_tuple"/>
  4824. <test name="std_test_tuple"/>
  4825. <test name="test_tuple_tricky"/>
  4826. <test name="std_test_tuple_tricky"/>
  4827. <test name="test_type_traits"/>
  4828. <test name="std_test_type_traits"/>
  4829. <test name="run_complex_overloads"/>
  4830. <test name="std_run_complex_overloads"/>
  4831. <test name="run_random"/>
  4832. <test name="std_run_random"/>
  4833. <test name="test_tuple_tricky"/>
  4834. <test name="tr1_add_const_test"/>
  4835. <test name="tr1_add_cv_test"/>
  4836. <test name="tr1_add_pointer_test"/>
  4837. <test name="tr1_add_reference_test"/>
  4838. <test name="tr1_add_volatile_test"/>
  4839. <test name="tr1_aligned_storage_test"/>
  4840. <test name="tr1_alignment_of_test"/>
  4841. <test name="tr1_has_nothrow_assign_test"/>
  4842. <test name="tr1_has_nothrow_constr_test"/>
  4843. <test name="tr1_has_nothrow_copy_test"/>
  4844. <test name="tr1_has_trivial_assign_test"/>
  4845. <test name="tr1_has_trivial_constr_test"/>
  4846. <test name="tr1_has_trivial_copy_test"/>
  4847. <test name="tr1_has_trivial_destr_test"/>
  4848. <test name="tr1_has_virtual_destr_test"/>
  4849. <test name="tr1_is_arithmetic_test"/>
  4850. <test name="tr1_is_array_test"/>
  4851. <test name="tr1_is_class_test"/>
  4852. <test name="tr1_is_compound_test"/>
  4853. <test name="tr1_is_const_test"/>
  4854. <test name="tr1_is_convertible_test"/>
  4855. <test name="tr1_is_empty_test"/>
  4856. <test name="tr1_is_enum_test"/>
  4857. <test name="tr1_is_floating_point_test"/>
  4858. <test name="tr1_is_function_test"/>
  4859. <test name="tr1_is_fundamental_test"/>
  4860. <test name="tr1_is_integral_test"/>
  4861. <test name="tr1_is_member_func_test"/>
  4862. <test name="tr1_is_member_obj_test"/>
  4863. <test name="tr1_is_member_pointer_test"/>
  4864. <test name="tr1_is_object_test"/>
  4865. <test name="tr1_is_pod_test"/>
  4866. <test name="tr1_is_pointer_test"/>
  4867. <test name="tr1_is_polymorphic_test"/>
  4868. <test name="tr1_is_reference_test"/>
  4869. <test name="tr1_is_same_test"/>
  4870. <test name="tr1_is_scalar_test"/>
  4871. <test name="tr1_is_signed_test"/>
  4872. <test name="tr1_is_union_test"/>
  4873. <test name="tr1_is_unsigned_test"/>
  4874. <test name="tr1_is_void_test"/>
  4875. <test name="tr1_is_volatile_test"/>
  4876. <test name="tr1_remove_const_test"/>
  4877. <test name="tr1_remove_cv_test"/>
  4878. <test name="tr1_remove_pointer_test"/>
  4879. <test name="tr1_remove_reference_test"/>
  4880. <test name="tr1_remove_volatile_test"/>
  4881. <test name="tr1_tky_abstract_type_test"/>
  4882. <test name="tr1_tricky_add_pointer_test"/>
  4883. <test name="tr1_tky_partial_spec_test"/>
  4884. <toolset name="borland-5.6*"/>
  4885. <note author="John Maddock">
  4886. Support for Borland C++ in the various TR1 libraries is pretty
  4887. poor (due to numerous compiler bugs sadly). The TR1 concept
  4888. checks are *very* strict, and are expected to fail with this
  4889. compiler. In addition most of the type_traits tests fail
  4890. whenever debugging support is turned on with an internal
  4891. compiler error. More conservative uses are more likely to succeed
  4892. with this compiler however.
  4893. </note>
  4894. </mark-expected-failures>
  4895. <mark-expected-failures>
  4896. <test name="test_complex"/>
  4897. <test name="std_test_complex"/>
  4898. <test name="test_function"/>
  4899. <test name="std_test_function"/>
  4900. <test name="test_random"/>
  4901. <test name="std_test_random"/>
  4902. <test name="test_result_of"/>
  4903. <test name="std_test_result_of"/>
  4904. <test name="test_tuple_tricky"/>
  4905. <test name="std_test_tuple_tricky"/>
  4906. <test name="test_type_traits"/>
  4907. <test name="std_test_type_traits"/>
  4908. <test name="run_complex_overloads"/>
  4909. <test name="std_run_complex_overloads"/>
  4910. <test name="test_shared_ptr"/>
  4911. <test name="std_test_shared_ptr"/>
  4912. <test name="std_run_random"/>
  4913. <test name="run_random"/>
  4914. <test name="test_tuple_tricky"/>
  4915. <test name="tr1_is_convertible_test"/>
  4916. <test name="tr1_remove_const_test"/>
  4917. <test name="tr1_remove_pointer_test"/>
  4918. <test name="tr1_remove_volatile_test"/>
  4919. <test name="tr1_tricky_add_pointer_test"/>
  4920. <test name="tr1_tky_partial_spec_test"/>
  4921. <toolset name="borland-5.8*"/>
  4922. <toolset name="borland-5.9*"/>
  4923. <note author="John Maddock">
  4924. Support for Borland C++ in the various TR1 libraries is pretty
  4925. poor (due to numerous compiler bugs sadly). The TR1 concept
  4926. checks are *very* strict, and are expected to fail with this
  4927. compiler. More conservative uses are more likely to succeed
  4928. with this compiler however.
  4929. </note>
  4930. </mark-expected-failures>
  4931. <mark-expected-failures>
  4932. <test name="std_test_bind"/>
  4933. <test name="test_bind"/>
  4934. <toolset name="gcc-4*darwin"/>
  4935. <toolset name="darwin*"/>
  4936. <note author="John Maddock">
  4937. These tests fail on this platform due to a recuring GCC bug.
  4938. </note>
  4939. </mark-expected-failures>
  4940. <mark-expected-failures>
  4941. <test name="test_type_traits"/>
  4942. <test name="std_test_type_traits"/>
  4943. <test name="tr1_is_abstract_test"/>
  4944. <toolset name="gcc-3.3.*"/>
  4945. <toolset name="gcc-3.2*"/>
  4946. <toolset name="qcc-3.3*"/>
  4947. <note author="John Maddock">
  4948. These tests fail due to a known compiler bug
  4949. that is fixed in more recent GNU compiler releases. Users are
  4950. very unlikely to encounter this as a real problem
  4951. in practice.
  4952. </note>
  4953. </mark-expected-failures>
  4954. <mark-expected-failures>
  4955. <test name="test_regex"/>
  4956. <test name="std_test_regex"/>
  4957. <test name="test_complex"/>
  4958. <test name="std_test_complex"/>
  4959. <test name="run_complex_overloads"/>
  4960. <test name="std_run_complex_overloads"/>
  4961. <toolset name="gcc-2*"/>
  4962. <note author="John Maddock">
  4963. These tests fail due to a known compiler bug
  4964. that is fixed in more recent releases. Users are
  4965. very unlikely to encounter this as a real problem
  4966. in practice.
  4967. </note>
  4968. </mark-expected-failures>
  4969. <mark-expected-failures>
  4970. <test name="test_type_traits"/>
  4971. <test name="std_test_type_traits"/>
  4972. <test name="test_result_of"/>
  4973. <test name="std_test_result_of"/>
  4974. <test name="tr1_is_abstract_test"/>
  4975. <test name="test_ios"/>
  4976. <test name="test_istream"/>
  4977. <test name="test_ostream"/>
  4978. <test name="test_streambuf"/>
  4979. <test name="test_limits"/>
  4980. <test name="test_locale"/>
  4981. <test name="test_ios_std_header"/>
  4982. <test name="test_istream_std_header"/>
  4983. <test name="test_limits_std_header"/>
  4984. <test name="test_locale_std_header"/>
  4985. <test name="test_ostream_std_header"/>
  4986. <test name="test_streambuf_std_header"/>
  4987. <toolset name="gcc-2*"/>
  4988. <note author="John Maddock">
  4989. These tests fail due to a known compiler bug
  4990. that is fixed in more recent releases. This
  4991. functionality may not be usable with this compiler.
  4992. </note>
  4993. </mark-expected-failures>
  4994. <mark-expected-failures>
  4995. <test name="run_complex_overloads"/>
  4996. <test name="std_run_complex_overloads"/>
  4997. <test name="std_test_complex"/>
  4998. <test name="test_complex"/>
  4999. <toolset name="qcc-3.3.5*gpp"/>
  5000. <note author="John Maddock">
  5001. These tests fail due to a known stdlib bug
  5002. that has been reported to the vendor.
  5003. </note>
  5004. </mark-expected-failures>
  5005. <mark-expected-failures>
  5006. <test name="tr1_function_traits_test"/>
  5007. <test name="tr1_remove_bounds_test"/>
  5008. <test name="tr1_remove_const_test"/>
  5009. <test name="tr1_remove_cv_test"/>
  5010. <test name="tr1_remove_pointer_test"/>
  5011. <test name="tr1_remove_reference_test"/>
  5012. <test name="tr1_remove_volatile_test"/>
  5013. <test name="tr1_decay_test"/>
  5014. <test name="tr1_extent_test"/>
  5015. <test name="tr1_remove_extent_test"/>
  5016. <test name="tr1_remove_all_extents_test"/>
  5017. <test name="tr1_rank_test"/>
  5018. <test name="tr1_is_unsigned_test"/>
  5019. <toolset name="msvc-6.5*"/>
  5020. <toolset name="msvc-7.0"/>
  5021. <note author="Aleksey Gurtovoy">
  5022. This failure is caused by the lack of compiler support for class template
  5023. partial specialization. A limited subset of the tested functionality is
  5024. available on the compiler through a user-side workaround (see
  5025. <a href="http://www.boost.org/libs/type_traits/index.html#transformations">
  5026. http://www.boost.org/libs/type_traits/index.html#transformations</a> for
  5027. details).
  5028. </note>
  5029. </mark-expected-failures>
  5030. <mark-expected-failures>
  5031. <test name="tr1_tky_incomplete_type_test"/>
  5032. <test name="tr1_tky_incomp_type_test"/>
  5033. <test name="tr1_decay_test"/>
  5034. <test name="tr1_extent_test"/>
  5035. <test name="tr1_is_base_of_test"/>
  5036. <test name="tr1_rank_test"/>
  5037. <test name="tr1_remove_all_extents_test"/>
  5038. <test name="tr1_remove_extent_test"/>
  5039. <test name="tr1_tky_function_type_test"/>
  5040. <toolset name="borland-5.6*"/>
  5041. <toolset name="borland-5.8*"/>
  5042. <toolset name="borland-5.9*"/>
  5043. <note author="John Maddock" refid="2"/>
  5044. </mark-expected-failures>
  5045. <test name="tr1_tricky_is_enum_test">
  5046. <mark-failure>
  5047. <toolset name="borland-5.6*"/>
  5048. <toolset name="borland-5.8*"/>
  5049. <toolset name="borland-5.9*"/>
  5050. <toolset name="msvc-6.5*"/>
  5051. <toolset name="gcc-2.95.3-*"/>
  5052. </mark-failure>
  5053. </test>
  5054. <test name="tr1_tricky_incomplete_type_test">
  5055. <mark-failure>
  5056. <toolset name="iw-7_1*"/>
  5057. <note author="John Maddock" refid="2"/>
  5058. </mark-failure>
  5059. </test>
  5060. <test name="tr1_tricky_incomp_type_test">
  5061. <mark-failure>
  5062. <toolset name="iw-7_1*"/>
  5063. <note author="John Maddock" refid="2"/>
  5064. </mark-failure>
  5065. </test>
  5066. <test name="tr1_tky_incomp_type_test">
  5067. <mark-failure>
  5068. <toolset name="iw-7_1*"/>
  5069. <note author="John Maddock" refid="2"/>
  5070. </mark-failure>
  5071. </test>
  5072. <test name="tr1_is_abstract_test">
  5073. <mark-failure>
  5074. <toolset name="borland-5.6*"/>
  5075. <toolset name="borland-5.8*"/>
  5076. <toolset name="borland-5.9*"/>
  5077. <toolset name="cw-8.3*"/>
  5078. <toolset name="cw-9.3*"/>
  5079. <toolset name="cw-9.4*"/>
  5080. <toolset name="cw-9.5*"/>
  5081. <toolset name="msvc-6.5*"/>
  5082. <toolset name="msvc-7.0"/>
  5083. <toolset name="mingw-3_3*"/>
  5084. <toolset name="gcc-2*"/>
  5085. <toolset name="gcc-3.2*"/>
  5086. <toolset name="gcc-3.3*"/>
  5087. <toolset name="gcc-3_3*"/>
  5088. <toolset name="qcc-3_3*"/>
  5089. <toolset name="sunpro-5_3-sunos"/>
  5090. <toolset name="hp_cxx-65*"/>
  5091. <toolset name="darwin"/>
  5092. <toolset name="mingw"/>
  5093. <note author="Aleksey Gurtovoy">
  5094. This functionality is available only on compilers that implement C++ Core Language
  5095. <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#337">Defect Report 337</a>.
  5096. </note>
  5097. </mark-failure>
  5098. </test>
  5099. <mark-expected-failures>
  5100. <test name="tr1_is_polymorphic_test"/>
  5101. <toolset name="gcc-2.95.3-stlport-*"/>
  5102. <note author="Doug Gregor" refid="3"/>
  5103. </mark-expected-failures>
  5104. <mark-expected-failures>
  5105. <test name="tr1_decay_test"/>
  5106. <test name="tr1_extent_test"/>
  5107. <test name="tr1_has_nothrow_assign_test"/>
  5108. <test name="tr1_has_nothrow_constr_test"/>
  5109. <test name="tr1_has_nothrow_copy_test"/>
  5110. <test name="tr1_has_trivial_assign_test"/>
  5111. <test name="tr1_has_trivial_constr_test"/>
  5112. <test name="tr1_has_trivial_copy_test"/>
  5113. <test name="tr1_has_trivial_destr_test"/>
  5114. <test name="tr1_is_array_test"/>
  5115. <test name="tr1_is_base_and_derived_test"/>
  5116. <test name="tr1_is_base_of_test"/>
  5117. <test name="tr1_is_class_test"/>
  5118. <test name="tr1_is_convertible_test"/>
  5119. <test name="tr1_is_object_test"/>
  5120. <test name="tr1_is_pod_test"/>
  5121. <test name="tr1_is_polymorphic_test"/>
  5122. <test name="tr1_rank_test"/>
  5123. <test name="tr1_remove_all_extents_test"/>
  5124. <test name="tr1_remove_bounds_test"/>
  5125. <test name="tr1_remove_extent_test"/>
  5126. <toolset name="sunpro-5_3-sunos"/>
  5127. <note author="John Maddock">
  5128. The Type Traits library is broken when used with Sunpro-5.3 and the
  5129. argument to the template is an array or function type. Most other argument types
  5130. do work as expected: in other words the functionality is limited
  5131. with this compiler, but not so much as to render the library unuseable.
  5132. </note>
  5133. </mark-expected-failures>
  5134. <mark-expected-failures>
  5135. <test name="tr1_decay_test"/>
  5136. <test name="tr1_extent_test"/>
  5137. <test name="tr1_is_abstract_test"/>
  5138. <test name="tr1_is_empty_test"/>
  5139. <test name="tr1_is_function_test"/>
  5140. <test name="tr1_is_member_func_test"/>
  5141. <test name="tr1_is_member_obj_test"/>
  5142. <test name="tr1_is_object_test"/>
  5143. <test name="tr1_is_reference_test"/>
  5144. <test name="tr1_rank_test"/>
  5145. <test name="tr1_tricky_function_type_test"/>
  5146. <test name="tr1_tky_function_type_test"/>
  5147. <test name="test_type_traits"/>
  5148. <test name="std_test_type_traits"/>
  5149. <toolset name="sun-5.8"/>
  5150. <note author="John Maddock">
  5151. The Type Traits library is broken when used with Sunpro-5.8 and the
  5152. argument to the template is a function type. Most other argument types
  5153. do work as expected: in other words the functionality is limited
  5154. with this compiler, but not so much as to render the library unuseable.
  5155. </note>
  5156. </mark-expected-failures>
  5157. <mark-expected-failures>
  5158. <test name="test_random"/>
  5159. <test name="std_test_random"/>
  5160. <toolset name="sun-5.8"/>
  5161. <toolset name="sun-5.9"/>
  5162. <note author="John Maddock">
  5163. These failures appear to represent a genuine issue with the
  5164. Boost.Random library that has yet to be addressed.
  5165. </note>
  5166. </mark-expected-failures>
  5167. <mark-expected-failures>
  5168. <test name="test_tuple_tricky"/>
  5169. <test name="std_test_tuple_tricky"/>
  5170. <toolset name="sun-5.8"/>
  5171. <note author="John Maddock">
  5172. These fail with an internal compiler error: there's no
  5173. workaround as yet.
  5174. </note>
  5175. </mark-expected-failures>
  5176. <mark-expected-failures>
  5177. <test name="tr1_tky_partial_spec_test"/>
  5178. <toolset name="sun-5.9"/>
  5179. <note author="John Maddock">
  5180. This fails with an internal compiler error: there's no
  5181. workaround as yet.
  5182. </note>
  5183. </mark-expected-failures>
  5184. <mark-expected-failures>
  5185. <test name="test_boost"/>
  5186. <test name="test_hash"/>
  5187. <test name="test_random"/>
  5188. <test name="test_regex"/>
  5189. <toolset name="msvc-7.1_stlport4"/>
  5190. <note author="John Maddock">
  5191. These failures are completely spurious: they're caused by the tests
  5192. being run with bjam -j2 and the post-processing not coping with the
  5193. resulting output. These failures should clear if these tests
  5194. are re-run at some point in the future.
  5195. </note>
  5196. </mark-expected-failures>
  5197. <mark-expected-failures>
  5198. <test name="tr1_is_empty_test"/>
  5199. <test name="tr1_is_function_test"/>
  5200. <test name="tr1_is_member_func_test"/>
  5201. <test name="tr1_is_member_obj_test"/>
  5202. <test name="tr1_is_reference_test"/>
  5203. <test name="tr1_tricky_function_type_test"/>
  5204. <test name="tr1_tricky_incomplete_type_test"/>
  5205. <test name="tr1_tricky_incomp_type_test"/>
  5206. <test name="tr1_tricky_is_enum_test"/>
  5207. <toolset name="sunpro-5_3-sunos"/>
  5208. <note author="John Maddock" refid="2"/>
  5209. </mark-expected-failures>
  5210. <mark-expected-failures>
  5211. <test name="tr1_tricky_function_type_test"/>
  5212. <test name="tr1_is_const_test"/>
  5213. <test name="tr1_is_volatile_test"/>
  5214. <test name="tr1_is_convertible_test"/>
  5215. <toolset name="gcc-2*"/>
  5216. <note author="John Maddock" refid="2"/>
  5217. </mark-expected-failures>
  5218. <mark-expected-failures>
  5219. <test name="test_array"/>
  5220. <test name="std_test_array"/>
  5221. <test name="test_array_tricky"/>
  5222. <test name="std_test_array_tricky"/>
  5223. <test name="test_bind"/>
  5224. <test name="std_test_bind"/>
  5225. <test name="test_complex"/>
  5226. <test name="std_test_complex"/>
  5227. <test name="test_function"/>
  5228. <test name="std_test_function"/>
  5229. <test name="test_random"/>
  5230. <test name="std_test_random"/>
  5231. <test name="test_reference_wrapper"/>
  5232. <test name="std_test_reference_wrapper"/>
  5233. <test name="test_regex"/>
  5234. <test name="std_test_regex"/>
  5235. <test name="test_result_of"/>
  5236. <test name="std_test_result_of"/>
  5237. <test name="test_shared_ptr"/>
  5238. <test name="std_test_shared_ptr"/>
  5239. <test name="test_tuple"/>
  5240. <test name="std_test_tuple"/>
  5241. <toolset name="vc-7"/>
  5242. <note author="John Maddock">
  5243. This library is almost unusable with VC7 due to name lookup issues.
  5244. </note>
  5245. </mark-expected-failures>
  5246. <mark-expected-failures>
  5247. <test name="tr1_aligned_storage_test"/>
  5248. <toolset name="cw-8.3"/>
  5249. <note author="John Maddock">
  5250. Older versions of MWCW incorrectly align pointers to member functions
  5251. (they use 12-byte boundaries, rather than a power-of-2 boundary),
  5252. leading to alignment_of / aligned_storage
  5253. to fail with these types on this compiler.
  5254. </note>
  5255. </mark-expected-failures>
  5256. </library>
  5257. <!-- utility/enable_if -->
  5258. <library name="utility/enable_if">
  5259. <mark-unusable>
  5260. <toolset name="borland-5.6*"/>
  5261. <toolset name="borland-5.8*"/>
  5262. <toolset name="cw-8.3*"/>
  5263. <toolset name="msvc-6.5*"/>
  5264. <toolset name="msvc-7.0"/>
  5265. <toolset name="gcc-2.95.3-*"/>
  5266. <note refid="3"/>
  5267. </mark-unusable>
  5268. <mark-expected-failures>
  5269. <test name="no_disambiguation"/>
  5270. <toolset name="gcc-3.2.*"/>
  5271. <note refid="3"/>
  5272. </mark-expected-failures>
  5273. <mark-expected-failures>
  5274. <test name="partial_specializations"/>
  5275. <toolset name="borland-5.9*"/>
  5276. <note author="Alisdair Meredith" refid="29"/>
  5277. </mark-expected-failures>
  5278. </library>
  5279. <!-- utility -->
  5280. <library name="utility">
  5281. <test name="addressof_test">
  5282. <mark-failure>
  5283. <toolset name="sunpro-5_3-sunos"/>
  5284. <note author="D. Gregor" refid="3"/>
  5285. </mark-failure>
  5286. </test>
  5287. <test name="fun_out_iter_example">
  5288. <mark-failure>
  5289. <toolset name="como-win32"/>
  5290. <note author="B. Dawes" refid="4"/>
  5291. </mark-failure>
  5292. </test>
  5293. <test name="numeric_traits_test">
  5294. <mark-failure>
  5295. <toolset name="borland-5.6*"/>
  5296. <toolset name="borland-5.8*"/>
  5297. <toolset name="borland-5.9*"/>
  5298. <note author="A.Meredith">
  5299. Compiler has a problem with BOOST_STATIC_CONSTANT in nested templates
  5300. inside class template specializations.
  5301. </note>
  5302. </mark-failure>
  5303. </test>
  5304. <test name="result_of_test">
  5305. <mark-failure>
  5306. <toolset name="borland-5*"/>
  5307. <toolset name="cw-8.3*"/>
  5308. <toolset name="msvc-6.5*"/>
  5309. <toolset name="msvc-7.0"/>
  5310. <toolset name="gcc-2.95.3*"/>
  5311. <toolset name="sunpro-5_3-sunos"/>
  5312. <note refid="3" author="D. Gregor"/>
  5313. </mark-failure>
  5314. </test>
  5315. <mark-expected-failures>
  5316. <test name="value_init_test"/>
  5317. <toolset name="msvc-6.5*"/>
  5318. <toolset name="msvc-7.0"/>
  5319. <note author="Aleksey Gurtovoy">
  5320. This failure is caused by a compiler bug (default-constructed scalar
  5321. types are not zero-initialized) that has been fixed in the latest
  5322. versions of the compiler (VC 7.1 and greater).
  5323. </note>
  5324. </mark-expected-failures>
  5325. <mark-expected-failures>
  5326. <test name="operators_test"/>
  5327. <toolset name="gcc-3.4.5_linux_x86_64"/>
  5328. <note author="Vladimir Prus">
  5329. The test takes more that 30 minutes to compile and the
  5330. compilation is automatically killed. It is likely caused
  5331. by the compiler bug, but it unknown how much this
  5332. bug affects regular use of the operators library. Is it
  5333. also unknown if the test can be refactored so that
  5334. not to trigger this bug.
  5335. </note>
  5336. </mark-expected-failures>
  5337. </library>
  5338. <!-- variant -->
  5339. <library name="variant">
  5340. <mark-unusable>
  5341. <toolset name="mipspro"/>
  5342. <toolset name="sunpro-5_3-sunos"/>
  5343. <toolset name="hp_cxx-65*"/>
  5344. <note refid="2"/>
  5345. </mark-unusable>
  5346. <test name="recursive_variant_test">
  5347. <mark-failure>
  5348. <toolset name="como-win32"/>
  5349. <toolset name="msvc-6.5*"/>
  5350. <toolset name="msvc-7.0"/>
  5351. <note refid="3"/>
  5352. </mark-failure>
  5353. </test>
  5354. <mark-expected-failures>
  5355. <test name="recursive_variant_test"/>
  5356. <test name="variant_test1"/>
  5357. <test name="variant_test5"/>
  5358. <test name="variant_visit_test"/>
  5359. <toolset name="borland-5.6*"/>
  5360. <toolset name="borland-5.8*"/>
  5361. <toolset name="borland-5.9*"/>
  5362. <note author="Aleksey Gurtovoy" refid="3"/>
  5363. </mark-expected-failures>
  5364. <test name="variant_reference_test">
  5365. <mark-failure>
  5366. <toolset name="cw-8.3*"/>
  5367. <toolset name="msvc-6.5*"/>
  5368. <toolset name="msvc-7.0"/>
  5369. <note refid="3"/>
  5370. </mark-failure>
  5371. <mark-failure>
  5372. <toolset name="iw-7_1*"/>
  5373. <toolset name="intel-7.1*"/>
  5374. <note refid="2"/>
  5375. </mark-failure>
  5376. </test>
  5377. </library>
  5378. <!-- wave -->
  5379. <library name="wave">
  5380. <mark-unusable>
  5381. <toolset name="msvc-6.5*"/>
  5382. <toolset name="sunpro-5_3-sunos"/>
  5383. <toolset name="borland-5.5*"/>
  5384. <toolset name="borland-5.6*"/>
  5385. <toolset name="borland-5.8*"/>
  5386. <toolset name="gcc-2.95.3-linux"/>
  5387. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  5388. <toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
  5389. <toolset name="hp_cxx-65*"/>
  5390. <note refid="29"/>
  5391. </mark-unusable>
  5392. <mark-unusable>
  5393. <toolset name="msvc-7.0"/>
  5394. <note>
  5395. This toolset isn't supported because of the used Spirit V1.8.x, which in turn is
  5396. not usable with this toolset.
  5397. </note>
  5398. </mark-unusable>
  5399. <mark-unusable>
  5400. <toolset name="borland-5.9*"/>
  5401. <note author="Alisdair Meredith">
  5402. This toolset isn't supported because of the used multi_index library, which in turn is
  5403. not usable with this toolset.
  5404. </note>
  5405. </mark-unusable>
  5406. <mark-expected-failures>
  5407. <test name="testwave"/>
  5408. <!-- toolset name="cw-9_5-darwin"/ -->
  5409. <toolset name="cw-8*"/>
  5410. <note author="Rene Rivera" refid="29"/>
  5411. </mark-expected-failures>
  5412. <mark-expected-failures>
  5413. <test name="testwave"/>
  5414. <toolset name="gcc-3.2.3-linux"/>
  5415. <toolset name="gcc-3.2.3_linux"/>
  5416. <toolset name="gcc-3.3.6-linux"/>
  5417. <toolset name="gcc-3.3.6"/>
  5418. <note author="Hartmut Kaiser" refid="29"/>
  5419. </mark-expected-failures>
  5420. <mark-expected-failures>
  5421. <test name="testwave"/>
  5422. <!-- <toolset name="qcc-3.3.5_gpp"/> -->
  5423. <toolset name="qcc-3.3.5*gpp"/>
  5424. <note author="Hartmut Kaiser" refid="29"/>
  5425. </mark-expected-failures>
  5426. <mark-expected-failures>
  5427. <test name="testwave_dll"/>
  5428. <toolset name="mingw-3*"/>
  5429. <note author="Hartmut Kaiser" refid="29"/>
  5430. </mark-expected-failures>
  5431. <mark-expected-failures>
  5432. <test name="testwave_dll"/>
  5433. <toolset name="cw-9.4"/>
  5434. <note author="Hartmut Kaiser" refid="2"/>
  5435. </mark-expected-failures>
  5436. <mark-expected-failures>
  5437. <test name="test_slex_lexer"/>
  5438. <toolset name="hp_cxx-65*"/>
  5439. <note author="Hartmut Kaiser" refid="2"/>
  5440. </mark-expected-failures>
  5441. </library>
  5442. <!-- xpressive -->
  5443. <library name="xpressive">
  5444. <mark-unusable>
  5445. <toolset name="gcc-2.95.3*"/>
  5446. <toolset name="msvc-6.5*"/>
  5447. <toolset name="msvc-7.0"/>
  5448. <note author="Eric Niebler">
  5449. These compilers do not support class template partial
  5450. specialization.
  5451. </note>
  5452. </mark-unusable>
  5453. <mark-unusable>
  5454. <toolset name="borland-5*"/>
  5455. <note author="Eric Niebler">
  5456. Boost.Fusion doesn't work on this compiler.
  5457. </note>
  5458. </mark-unusable>
  5459. <mark-unusable>
  5460. <toolset name="cw-8.3"/>
  5461. <note author="Eric Niebler">
  5462. This compiler doesn't support SFINAE / enable_if
  5463. </note>
  5464. </mark-unusable>
  5465. <mark-unusable>
  5466. <toolset name="dmc*"/>
  5467. <note author="Eric Niebler">
  5468. Digital Mars cannot seem to handle dependent default template parameters,
  5469. such as "template &lt; class T, bool B = is_foo &lt; T &gt; ::value &gt;"
  5470. </note>
  5471. </mark-unusable>
  5472. <mark-unusable>
  5473. <toolset name="sunpro-5_3-sunos"/>
  5474. <toolset name="sun-5.7"/>
  5475. <toolset name="sun-5.8"/>
  5476. <toolset name="sun-5.9"/>
  5477. <note refid="17"/>
  5478. </mark-unusable>
  5479. <mark-expected-failures>
  5480. <test name="test_actions"/>
  5481. <toolset name="acc"/>
  5482. <note author="Eric Niebler" refid="43"/>
  5483. </mark-expected-failures>
  5484. <mark-expected-failures>
  5485. <test name="test_symbols"/>
  5486. <toolset name="acc"/>
  5487. <note author="Eric Niebler" refid="43"/>
  5488. </mark-expected-failures>
  5489. </library>
  5490. <!-- /////////////// Standard note definitions /////////////// -->
  5491. <note id="0">
  5492. This test fails only intermittently.
  5493. </note>
  5494. <note id="1">
  5495. The failure is caused by a problem in Boost code. The Boost developers are aware of
  5496. the problem and plan to fix it.
  5497. </note>
  5498. <note id="2">
  5499. The failure is caused by a compiler bug.
  5500. </note>
  5501. <note id="3">
  5502. The failure is caused by a compiler bug, which has been reported to the compiler
  5503. supplier (or is already known to them).
  5504. </note>
  5505. <note id="4">
  5506. The failure is caused by a standard library bug.
  5507. </note>
  5508. <note id="5">
  5509. The failure is caused by a standard library bug, which has been reported to the
  5510. standard library supplier (or is already known to them).
  5511. </note>
  5512. <note id="6">
  5513. The failure is probably caused by the test code, harness, or configuration. Thus,
  5514. it may not affect users of the library.
  5515. </note>
  5516. <note id="9">
  5517. The failure is serious and likely to prevent all use of this Boost library with this compiler.
  5518. </note>
  5519. <note id="10">
  5520. The failure is serious and likely to prevent all use of this Boost library with this
  5521. compiler. The failure is caused by a compiler bug, which has been reported to the compiler
  5522. supplier (or is already known to them).
  5523. </note>
  5524. <note id="14">
  5525. The failure is caused by a platform API bug.
  5526. </note>
  5527. <note id="15">
  5528. The failure is caused by a platform API bug, which has been reported to the platform API
  5529. supplier (or is already known to them).
  5530. </note>
  5531. <note id="16">
  5532. The failure is not serious and will not affect most users. The library degrades gracefully.
  5533. </note>
  5534. <note id="17">
  5535. This compiler's bugs are not supported by the library.
  5536. </note>
  5537. <note id="18">
  5538. Locales missing or adequately supported by this compiler.
  5539. </note>
  5540. <note id="19">
  5541. Missing or inadequate wchar/wstring/wstream support for this compiler.
  5542. </note>
  5543. <note id="20">
  5544. No std iterator traits for this compiler.
  5545. </note>
  5546. <note id="21">
  5547. Library has limited input/output support due to compiler inadequacies.
  5548. </note>
  5549. <note id="22">
  5550. No high precision clock for this platform.
  5551. </note>
  5552. <note id="23">
  5553. A bug in standard library prevents passing std::set from DLL to
  5554. application. A fixed &lt;tree&gt; header is available from
  5555. http://www.dinkumware.com/vc_fixes.html.
  5556. </note>
  5557. <note id="24">
  5558. Although the documentation from the Comeau website would make it appear
  5559. that windows DLL's are supported using the --windows option, after some
  5560. experimentation we have been unsuccessful in making dll configurations
  5561. work correctly.
  5562. </note>
  5563. <note id="25">
  5564. The failure is caused by a runtime limitation. Locale support is only
  5565. available with the static linked variant of the runtime. Generally
  5566. the dynamic linked variant is required when building dynamic modules,
  5567. DLL, <code>so</code>, etc.
  5568. </note>
  5569. <note id="26">
  5570. This failure is caused by a compiler bug with no known workaround.
  5571. Patches are welcome!
  5572. </note>
  5573. <note id="27" >
  5574. This failure is caused by bugs in the standard library implementation and/or
  5575. bugs in the compiler.
  5576. </note>
  5577. <note id="28">
  5578. Unresearched failure -- please contact library developers for more
  5579. information about possible causes.
  5580. </note>
  5581. <note id="29">
  5582. The test fails due to unresearched issues. The library
  5583. developers are aware of this failure, but need help with
  5584. investigating/addressing it for future releases.
  5585. </note>
  5586. <note id="30">
  5587. The support for this deficient compiler will be dropped starting
  5588. from Boost 1.33.0 release. Please use one of the previous Boost
  5589. releases if you need the library to work on this compiler.
  5590. </note>
  5591. <note id="31">
  5592. This failure is caused by compiler bugs or limitations. Some advanced
  5593. or esoteric library features may be unavailable or only partially available.
  5594. This does not impact most common uses of the library.
  5595. </note>
  5596. <note id="32">
  5597. This failure is caused by a compiler bug. Certain code constructs that should
  5598. fail compilation are accepted by the compiler. This can mask some programming
  5599. errors, but does not impact the usability of the library.
  5600. </note>
  5601. <note id="33">
  5602. The failures are caused by the wrong handling of the
  5603. <code>std::internal</code> flag in the iostreams implementation of the
  5604. standard library used on that compiler/platform combo. Apart from that,
  5605. the format library works as expected.
  5606. </note>
  5607. <note id="34">
  5608. The failures are caused by the fact that the iword and pword arrays seem
  5609. to share the same memory area in the iostreams implementation of the
  5610. standard library used on that compiler/platform combo. As long as you
  5611. stay clear of iword and pword, the library should work ok.
  5612. </note>
  5613. <note id="35">
  5614. This failure occurs only when using shared libraries for this
  5615. compiler and platform, although the same programs should work
  5616. properly when using static libraries. This problem has not
  5617. been researched.
  5618. </note>
  5619. <note id="36">
  5620. Wide character support is disabled in the GNU Standard C++ library as
  5621. supplied on the QNX Neutrino version 6.3.0 distribution.
  5622. </note>
  5623. <note id="37">
  5624. This problem is due to the non-conforming STLport
  5625. implementation of vector's swap: it can be easily
  5626. reproduced with the following code snippet:
  5627. typedef std::vector&lt;int&gt; vector_type;
  5628. typedef vector_type::reference reference_type;
  5629. vector_type v1(4u, 1);
  5630. vector_type v2(7u, 0);
  5631. reference_type ref = v1[2];
  5632. int x = ref;
  5633. std::swap(v1, v2);
  5634. BOOST_CHECK(v2[2] == x); // ok
  5635. v2[2] = 1 - v2[2];
  5636. BOOST_CHECK(ref != x); // oops
  5637. </note>
  5638. <note id="38">
  5639. When compiling this test, aCC6 runs out of memory. The HP
  5640. compiler group is aware of this issue and is working on the fix.
  5641. </note>
  5642. <note id="39">
  5643. This test assumes native typeof support.
  5644. </note>
  5645. <note id="40">
  5646. This test assumes compiler support for rvalue references.
  5647. </note>
  5648. <note id="41">
  5649. These tests rely on the ability of an std::deque container to be
  5650. constructed off two input iterators. Unfortunately, the Rogue Wave
  5651. library version 2.2 and higher assumes iterator which has + and -
  5652. operators which only random access iterator is required to provide.
  5653. </note>
  5654. <note id="42">
  5655. Internal compiler error: GCC Bugzilla Bug 33580.
  5656. This is a regression in the gcc 4.2 series.
  5657. </note>
  5658. <note id="43">
  5659. These test failures are reported to be
  5660. under investigation at HP's compiler lab.
  5661. </note>
  5662. <note id="44">
  5663. This compiler does not support gcc stdcall function attribute.
  5664. </note>
  5665. <note id="45">
  5666. The Rogue Wave standard library version used by this compiler provides
  5667. a faulty vector&lt;bool&gt; iterator, which is not symmetric. There is an
  5668. associated bug report in the Rogue Wave bug tracking system for this
  5669. problem.
  5670. </note>
  5671. </explicit-failures-markup>
粤ICP备19079148号