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