explicit-failures-markup.xml 234 KB

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