explicit-failures-markup.xml 243 KB

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