explicit-failures-markup.xml 289 KB

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