explicit-failures-markup.xml 279 KB

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