| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388 |
- <explicit-failures-markup
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="explicit-failures.xsd"
- >
- <!--
- The following online services can be used to validate your changes to this file:
- - http://apps.gotdotnet.com/xmltools/xsdvalidator/
- When using the gotdotnet tool you need to provide both the explicit-failures-markup.xml
- file as the XML document and the explicit-failures.xsd as the schema document. Use the
- browse buttons to select them from your local hard drive.
- - http://tools.decisionsoft.com/schemaValidate.html
- -->
- <!-- /////////////// Toolsets /////////////// -->
- <mark-toolset name="borland-5_6_4" status="required"/>
- <mark-toolset name="cw-9_4" status="required"/>
- <mark-toolset name="cw-8_3" status="required"/>
- <mark-toolset name="cw-9_3-darwin" status="required"/>
- <mark-toolset name="cw-9_4-darwin" status="required"/>
- <mark-toolset name="msvc" status="required"/>
- <mark-toolset name="msvc-stlport" status="required"/>
- <mark-toolset name="vc7" status="required"/>
- <mark-toolset name="vc-7_1" status="required"/>
- <mark-toolset name="vc-8_0" status="required"/>
- <mark-toolset name="mingw-3_4_2" status="required"/>
- <mark-toolset name="mingw-3_3_1" status="required"/>
- <mark-toolset name="gcc-2.95.3-linux" status="required"/>
- <mark-toolset name="gcc-2.95.3-stlport-4.5.3-linux" status="required"/>
- <mark-toolset name="gcc-3.3.5-linux" status="required"/>
- <mark-toolset name="gcc-3.4.3-linux" status="required"/>
- <mark-toolset name="gcc-3_3-darwin" status="required"/>
- <mark-toolset name="iw-7_1-vc6" status="required"/>
- <mark-toolset name="iw-7_1-vc6-stlp-4_5_3" status="required"/>
- <mark-toolset name="intel-win32-8_0" status="required"/>
- <mark-toolset name="intel-8.1-linux" status="required"/>
- <!-- /////////////// Libraries /////////////// -->
- <!-- minmax -->
- <library name="algorithm/minmax">
- <mark-unusable>
- <toolset name="sunpro-5_3-sunos"/>
- </mark-unusable>
- </library>
- <!-- string_algo -->
- <library name="algorithm/string">
- <mark-unusable>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="iw-7_1-vc6"/>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <toolset name="mipspro"/>
- <toolset name="sunpro-5_3-sunos"/>
- <note author="P.Droba">
- The compiler does not support features that are essential for the library.
- </note>
- </mark-unusable>
- </library>
- <!-- array -->
- <library name="array">
- <test name="array3">
- <mark-failure>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <note refid="3"/>
- </mark-failure>
- <mark-failure>
- <toolset name="sunpro-5_3-sunos"/>
- <note refid="4"/>
- </mark-failure>
- </test>
- <test name="array4">
- <mark-failure>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <note refid="3"/>
- </mark-failure>
- </test>
- </library>
- <!-- assign -->
- <library name="assign">
- <mark-expected-failures>
- <test name="array"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- <note author="Thorsten Ottosen" >
- The test would (most likely) compile and run properly if the workaround
- syntax .to_container( c ) was applied to all list_of() expressions.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="email_example"/>
- <toolset name="gcc-2.95.3*"/>
- <note refid="27" author="Thorsten Ottosen"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="list_inserter"/>
- <toolset name="vc7"/>
- <note refid="6" author="Thorsten Ottosen"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="list_of"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- <note author="Thorsten Ottosen" >
- The test would (most likely) compile and run properly if the workaround
- syntax .to_container( c ) was applied to all list_of() expressions.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="multi_index_container"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="gcc-2.95.3*"/>
- <toolset name="intel-8.0-linux"/>
- <toolset name="intel-8.1-linux"/>
- <toolset name="gcc-3.4.1*"/>
- <toolset name="gcc-3.4.2*"/>
- <note refid="27" author="Thorsten Ottosen"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="multi_index_container"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- <toolset name="mipspro"/>
- <toolset name="tru64cxx65"/>
- <note author="Thorsten Ottosen" >
- The test would (most likely) compile and run properly if the workaround
- syntax .to_container( c ) was applied to all list_of() expressions.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="my_vector_example"/>
- <toolset name="gcc-2.95.3*"/>
- <note refid="27" author="Thorsten Ottosen"/>
- </mark-expected-failures>
- </library>
- <!-- bind-->
- <library name="bind">
- <mark-expected-failures>
- <test name="bind_cv_test"/>
- <test name="bind_stateful_test"/>
- <toolset name="intel-7.1-linux"/>
- <toolset name="intel-7.1-stdlib-default-linux"/>
- <note refid="2" author="Aleksey Gurtovoy"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="bind_dm2_test"/>
- <test name="mem_fn_dm_test"/>
- <toolset name="msvc*"/>
- <toolset name="vc7"/>
- <toolset name="cw-8_3"/>
- <note refid="31" author="Peter Dimov"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="bind_dm_test"/>
- <toolset name="msvc*"/>
- <toolset name="sunpro-5_3-sunos"/>
- <note refid="31" author="Peter Dimov"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="mem_fn_derived_test"/>
- <toolset name="sunpro-5_3-sunos"/>
- <note refid="31" author="Peter Dimov"/>
- </mark-expected-failures>
- </library>
- <!-- concept_check -->
- <library name="concept_check">
- <test name="class_concept_fail_expected">
- <mark-failure>
- <toolset name="cw-8_3*"/>
- <note author="B. Dawes" refid="3"/>
- </mark-failure>
- </test>
- </library>
- <!-- config -->
- <library name="config">
- <test name="config_test">
- <mark-failure>
- <toolset name="intel-win32"/>
- <note author="B. Dawes" refid="3"/>
- </mark-failure>
- </test>
- <test name="config_link_test">
- <mark-failure>
- <toolset name="*como-4_3_3-vc7*"/>
- <note author="J. Maddock" refid="3"/>
- </mark-failure>
- </test>
- <test name="limits_test">
- <mark-failure>
- <toolset name="cw-8_3*"/>
- <note author="B. Dawes" refid="3"/>
- </mark-failure>
- </test>
- <test name="limits_test">
- <mark-failure>
- <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
- <note author="Aleksey Gurtovoy" refid="4"/>
- </mark-failure>
- </test>
- <test name="test_thread_fail1">
- <mark-failure>
- <toolset name="sunpro-5_3-sunos"/>
- <note author="J. Maddock" refid="3"/>
- </mark-failure>
- </test>
- <test name="test_thread_fail2">
- <mark-failure>
- <toolset name="sunpro-5_3-sunos"/>
- <note author="J. Maddock" refid="3"/>
- </mark-failure>
- </test>
- </library>
- <!-- conversion -->
- <library name="conversion">
- <test name="lexical_cast_test">
- <mark-failure>
- <toolset name="vc-8_0"/>
- <note author="Aleksey Gurtovoy" refid="4"/>
- </mark-failure>
- <mark-failure>
- <toolset name="sunpro-5_3-sunos"/>
- <note author="Douglas Gregor" refid="3"/>
- </mark-failure>
- </test>
- </library>
- <!-- crc -->
- <library name="crc">
- <test name="crc_test">
- <mark-failure>
- <toolset name="sunpro-5_3-sunos"/>
- <note author="Douglas Gregor" refid="3"/>
- </mark-failure>
- </test>
- </library>
- <!-- date_time -->
- <library name="date_time">
- <mark-unusable>
- <toolset name="sunpro-5_3-sunos"/>
- <toolset name="msvc-stlport"/>
- <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
- <toolset name="iw-7_1-vc6"/>
- </mark-unusable>
- <test name="testgreg_serialize*">
- <mark-failure>
- <toolset name="msvc*"/>
- <toolset name="gcc-2.*"/>
- <toolset name="tru64cxx65-042"/>
- <toolset name="vc7"/>
- <note author="B. Garst">The serialization library does not support this compiler.
- </note>
- </mark-failure>
- </test>
- <test name="testtime_serialize*">
- <mark-failure>
- <toolset name="msvc*"/>
- <toolset name="gcc-2.*"/>
- <toolset name="tru64cxx65-042"/>
- <toolset name="vc7"/>
- <note author="B. Garst">The serialization library does not support this compiler.
- </note>
- </mark-failure>
- </test>
- <test name="testdate_iterator">
- <mark-failure>
- <toolset name="intel-7.1-stdlib-default-linux"/>
- <toolset name="intel-7.1-linux"/>
- <note author="J. Garland" refid="19,21"/>
- </mark-failure>
- </test>
- <test name="testdate_iterator_dll">
- <mark-failure>
- <toolset name="intel-7.1-stdlib-default-linux"/>
- <toolset name="intel-7.1-linux"/>
- <note author="J. Garland" refid="19,21"/>
- </mark-failure>
- </test>
- <test name="testgeneric_period">
- <mark-failure>
- <toolset name="intel-7.1-stdlib-default-linux"/>
- <toolset name="intel-7.1-linux"/>
- <note author="J. Garland">These are strange runtime failures for
- which there is no obvious explanation. Later versions of the
- Intel compiler (eg:8.0) seem to have resolved the issue.
- </note>
- </mark-failure>
- </test>
- <test name="testgreg_wstream">
- <mark-failure>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <toolset name="cw-8_3*"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="mingw*"/>
- <toolset name="gcc"/>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="gcc-3.1-darwin"/>
- <toolset name="*como-4_3_3*"/>
- <toolset name="tru64cxx65-042"/>
- <note author="B. Garst" refid="19,21"/>
- </mark-failure>
- </test>
- <test name="testlocal_time_facet">
- <mark-failure>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <toolset name="mingw*"/>
- <note author="J. Garland">
- Some older compilers are confused by the template code here.
- These are new features to date-time in 1.33 and there is no
- plan to backport to these non-compliant compilers.
- </note>
- </mark-failure>
- </test>
- <test name="testlocal_time">
- <mark-failure>
- <toolset name="msvc"/>
- <note author="J. Garland">
- Some older compilers are confused by the template code here.
- These are new features to date-time in 1.33 and there is no
- plan to backport to these non-compliant compilers.
- </note>
- </mark-failure>
- </test>
- <test name="testclocks">
- <mark-failure>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <note author="J. Garland">
- Some older compilers are confused by the template code here.
- These are new features to date-time in 1.33 and there is no
- plan to backport to these non-compliant compilers.
- </note>
- </mark-failure>
- </test>
- <test name="testlocal_time_input_facet">
- <mark-failure>
- <toolset name="vc7"/>
- <toolset name="msvc"/>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="tru64cxx65-042"/>
- <note author="J. Garland">
- Some older compilers are confused by the template code here.
- These are new features to date-time in 1.33 and there is no
- plan to backport to these non-compliant compilers.
- </note>
- </mark-failure>
- </test>
- <test name="testfacet*">
- <mark-failure>
- <toolset name="tru64cxx65-042"/>
- <note author="J. Garland">
- There something non-standard about the tru64 standard library which
- is preventing these tests from compiling.
- </note>
- </mark-failure>
- </test>
- <test name="testtz_database">
- <mark-failure>
- <toolset name="msvc"/>
- <note author="J. Garland">
- Some older compilers are confused by the template code here.
- These are new features to date-time in 1.33 and there is no
- plan to backport to these non-compliant compilers.
- </note>
- </mark-failure>
- </test>
- <test name="testtime_wstream">
- <mark-failure>
- <toolset name="gcc"/>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="gcc-3.1-darwin"/>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="mingw*"/>
- <toolset name="*como-4_3_3*"/>
- <toolset name="tru64cxx65-042"/>
- <note author="B. Garst" refid="19,21,22"/>
- </mark-failure>
- </test>
- <test name="testtime_wstream_std_config">
- <mark-failure>
- <toolset name="gcc"/>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="gcc-3.1-darwin"/>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="mingw*"/>
- <toolset name="*como-4_3_3*"/>
- <toolset name="tru64cxx65-042"/>
- <note author="B. Garst" refid="19,21,22"/>
- </mark-failure>
- </test>
- <test name="testfacet">
- <mark-failure>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="gcc-3.1-darwin"/>
- <toolset name="msvc"/>
- <toolset name="mingw*"/>
- <toolset name="tru64cxx65-042"/>
- <note author="B. Garst" refid="18,19"/>
- </mark-failure>
- </test>
- <test name="testfacet_dll">
- <mark-failure>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <toolset name="gcc-3.1-darwin"/>
- <toolset name="msvc"/>
- <toolset name="mingw*"/>
- <toolset name="*como-4_3_3*"/>
- <toolset name="tru64cxx65-042"/>
- <note author="B. Garst" refid="18,19"/>
- </mark-failure>
- <mark-failure>
- <toolset name="cw-8_3*"/>
- <note author="R. Rivera" refid="25"/>
- </mark-failure>
- </test>
- <test name="testday_dll">
- <mark-failure>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- </mark-failure>
- </test>
- <test name="testgreg_year_dll">
- <mark-failure>
- <toolset name="*como-4_3_3*"/>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- </mark-failure>
- </test>
- <test name="testparse_date">
- <mark-failure>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <toolset name="tru64cxx65-042"/>
- <note author="B. Garst" refid="18,20"/>
- </mark-failure>
- </test>
- <test name="testmicrosec_time_clock">
- <mark-failure>
- <toolset name="intel-7.1-stdlib-default-linux"/>
- <toolset name="*como-4_3_3*"/>
- <toolset name="intel-7.1-linux"/>
- <note author="B. Garst" refid="22"/>
- </mark-failure>
- </test>
- <test name="teststreams">
- <mark-failure>
- <toolset name="gcc"/>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <toolset name="gcc-3.1-darwin"/>
- <toolset name="msvc"/>
- <toolset name="cw-8_3*"/>
- <toolset name="vc7"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="mingw-3*"/>
- <toolset name="mingw"/>
- <toolset name="*como-4_3_3*"/>
- <toolset name="tru64cxx65-042"/>
- <note author="B. Garst" refid="18,19,20"/>
- </mark-failure>
- </test>
- <test name="testdate_dll">
- <mark-failure>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <toolset name="*como-4_3_3*"/>
- <note author="J. Garland" date="30 Jan 2004" id="24"/>
- </mark-failure>
- </test>
- <test name="testgreg_day_dll">
- <mark-failure>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <toolset name="*como-4_3_3*"/>
- <note author="J. Garland" date="30 Jan 2004" id="24"/>
- </mark-failure>
- </test>
- <test name="*_dll">
- <mark-failure>
- <toolset name="*como-4_3_3*"/>
- <note author="J. Garland" date="30 Jan 2004" id="24"/>
- </mark-failure>
- </test>
- </library>
- <!-- dynamic_bitset -->
- <library name="dynamic_bitset">
- <test name="dyn_bitset_unit_tests4">
- <mark-failure>
- <toolset name="cw-9_3"/>
- <note author="Aleksey Gurtovoy" refid="2"/>
- </mark-failure>
- <mark-failure>
- <toolset name="cw-9_3-darwin"/>
- <note author="Douglas Gregor" refid="2"/>
- </mark-failure>
- <mark-failure>
- <toolset name="sunpro-5_3-sunos"/>
- <note author="Douglas Gregor" refid="2"/>
- </mark-failure>
- </test>
- </library>
- <!-- filesystem -->
- <library name="filesystem">
- <mark-unusable>
- <toolset name="intel-7.1-linux"/>
- <toolset name="intel-7.1-stdlib-default-linux"/>
- <note author="Aleksey Gurtovoy">
- Due to to standard library bugs this configuration is not supported by
- the most recent version of the library.
- </note>
- </mark-unusable>
- </library>
- <!-- format -->
- <library name="format">
- <mark-unusable>
- <toolset name="iw-7_1*"/>
- <note author="Aleksey Gurtovoy">
- The failure is caused by a standard library bug: the
- iostream components fail to handle <code>ios::internal</code>
- flag.
- </note>
- </mark-unusable>
- </library>
- <!-- functional/hash -->
- <library name="functional/hash">
- <mark-expected-failures>
- <test name="hash_value_array_test"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- <note author="Daniel James">
- hash_value is not overloaded for arrays for older versions
- of Visual C++. There is a work around so that
- boost::hash<T[N]>, boost::hash_combine and boost::hash_range
- work.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="hash_function_pointer_test"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- <note refid="2" author="Daniel James"/>
- </mark-expected-failures>
- </library>
- <!-- graph -->
- <library name="graph">
- <mark-unusable>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="sunpro-5_3-sunos"/>
- </mark-unusable>
- <mark-expected-failures>
- <test name="adj_matrix_cc"/>
- <test name="biconnected_components_test"/>
- <test name="bfs_cc"/>
- <test name="bundled_properties"/>
- <test name="dfs_cc"/>
- <test name="dijkstra_cc"/>
- <test name="floyd_warshall_test"/>
- <test name="gursoy_atun_layout_test"/>
- <test name="graphviz_test"/>
- <test name="subgraph"/>
- <test name="transitive_closure_test"/>
- <test name="vector_graph_cc"/>
- <toolset name="vc7"/>
- <note refid="3" author="D. Gregor"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="betweenness_centrality_test"/>
- <toolset name="iw-7_1-vc6*"/>
- <toolset name="vc7"/>
- <note refid="3" author="Aleksey Gurtovoy"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="graphviz_test"/>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <toolset name="cw-8_3"/>
- <toolset name="cw-9_3-darwin"/>
- <toolset name="cw-9_4"/>
- <toolset name="iw-7_1-vc6"/>
- <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
- <note refid="3" author="Doug Gregor"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="layout_test"/>
- <toolset name="intel-win32-9_0"/>
- </mark-expected-failures>
- </library>
- <!-- io-->
- <library name="io">
- <mark-expected-failures>
- <test name="ios_state_unit_test"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="iw-7_1-vc6*"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <note refid="4" author="Aleksey Gurtovoy"/>
- </mark-expected-failures>
- </library>
- <!-- iostreams -->
- <library name="iostreams">
- <mark-unusable>
- <toolset name="sunpro-5_3-sunos"/>
- <note author="Jonathan Turkanis">
- Many compiler-specific workarounds will have to applied before toolset is supported.
- </note>
- </mark-unusable>
- <mark-expected-failures>
- <test name="seekable_file_test"/>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
- <toolset name="msvc-stlport"/>
- <note author="Jonathan Turkanis">
- This failure is a result of an undiagnosed STLPort bug;
- the test fails even if all Boost components are replaced by
- standard library components.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="code_converter_test"/>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="mingw"/>
- <note author="Jonathan Turkanis">
- No wide stream support.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="wide_stream_test"/>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="mingw"/>
- <note author="Jonathan Turkanis">
- No wide stream support.
- </note>
- </mark-expected-failures>
- </library>
- <!-- lambda -->
- <library name="lambda">
- <mark-unusable>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="borland-5_5_1"/>
- <toolset name="vc7"/>
- <toolset name="sunpro-5_3-sunos"/>
- <note refid="17">
- </note>
- </mark-unusable>
- <mark-expected-failures>
- <test name="bll_and_function"/>
- <toolset name="vc-8_0"/>
- <note author="Aleksey Gurtovoy" refid="6"/>
- </mark-expected-failures>
- </library>
- <!-- logic -->
- <library name="logic">
- <test name="tribool_io_test">
- <mark-failure>
- <toolset name="msvc-stlport"/>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="sunpro-5_3-sunos"/>
- <toolset name="tru64cxx65-042"/>
- <note author="Douglas Gregor" refid="4"/>
- </mark-failure>
- </test>
- </library>
- <!-- MPL -->
- <library name="mpl">
- <mark-expected-failures>
- <test name="as_sequence"/>
- <test name="is_sequence"/>
- <test name="has_xxx"/>
- <test name="no_has_xxx"/>
- <test name="single_view"/>
- <toolset name="cw-8_3*"/>
- <note author="Aleksey Gurtovoy" date="17 Sep 2004">
- This failure is caused by a deficient SFINAE implementation; the bug
- was fixed in the next major compiler version (CodeWarrior 9.x).
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="is_sequence"/>
- <test name="as_sequence"/>
- <test name="has_xxx"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="gcc-2.95.3*"/>
- <note author="Aleksey Gurtovoy" date="17 Sep 2004">
- This failure is caused by a deficient SFINAE implementation.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="apply"/>
- <test name="for_each"/>
- <test name="multiset"/>
- <test name="zip_view"/>
- <toolset name="borland-5_6_4"/>
- <note author="Aleksey Gurtovoy" date="17 Sep 2004" refid="26"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="assert"/>
- <test name="at"/>
- <test name="back"/>
- <test name="front"/>
- <test name="has_xxx"/>
- <test name="multiset"/>
- <test name="no_has_xxx"/>
- <test name="zip_view"/>
- <toolset name="mipspro"/>
- <note author="Aleksey Gurtovoy" date="17 Sep 2004" refid="26"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="quote"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc*"/>
- <toolset name="mipspro"/>
- <note author="Aleksey Gurtovoy" date="17 Sep 2004">
- This failure is caused by a lack of compiler support for template template
- parameters.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="map"/>
- <test name="set"/>
- <test name="set_c"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="gcc-2.95.3*"/>
- <toolset name="mipspro"/>
- <note author="Aleksey Gurtovoy" date="17 Sep 2004">
- This is an advanced functionality that hasn't been ported to the deficient
- compilers (yet). Patches are welcome!
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="map"/>
- <toolset name="msvc*"/>
- <toolset name="vc7"/>
- <note author="Aleksey Gurtovoy" date="17 Sep 2004">
- This is an advanced functionality that hasn't been ported to the deficient
- compilers (yet). Patches are welcome!
- </note>
- </mark-expected-failures>
- </library>
- <!-- multi_array -->
- <library name="multi_array">
- <mark-unusable>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="borland-5_5_1"/>
- <note author="Alisdair Meredith" date="30 Jan 2004">
- <p>
- This library has never worked [on Borland 5.5.1 and 5.6.4], and the only tests
- that 'pass' are compile-fail tests failing for the wrong reasons!
- </p>
- </note>
- </mark-unusable>
- <mark-unusable>
- <toolset name="sunpro-5_3-sunos"/>
- <note author="Douglas Gregor" refid="3"/>
- </mark-unusable>
- <test name="constructors">
- <mark-failure>
- <toolset name="msvc"/>
- <note author="Ronald Garcia" date="13 Jul 2004">
- Known error in MSVC. see
- <a href="http://boost-consulting.com/boost/libs/multi_index/doc/compiler_specifics.html#msvc_60">
- http://boost-consulting.com/boost/libs/multi_index/doc/compiler_specifics.html#msvc_60</a>
- for more information.
- </note>
- </mark-failure>
- </test>
- <mark-expected-failures>
- <test name="assign_to_array"/>
- <toolset name="gcc-2.95.3*"/>
- <note author="Aleksey Gurtovoy" date="21 Sep 2004" refid="2"/>
- </mark-expected-failures>
- </library>
- <!-- multi_index -->
- <library name="multi_index">
- <mark-unusable>
- <toolset name="borland-5_6_4"/>
- <note author="J. López" date="05 Jul 2004" refid="17"/>
- </mark-unusable>
- <mark-unusable>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <note author="J. López" date="09 Jul 2004" refid="17"/>
- </mark-unusable>
- <mark-unusable>
- <toolset name="*como-4_3_3-msvc"/>
- <note author="J. López" date="30 Jul 2004">
- The VC++ 6.0 backend runs out of internal resources while
- trying to process the Comeau output for this library;
- Comeau Computing has been asked about a solution.
- On the other hand, Comeau 4.3.3 with VC++ 7.0 backend works
- fine.
- </note>
- </mark-unusable>
- <mark-unusable>
- <toolset name="sunpro-5_3-sunos"/>
- <note author="J. López" date="22 Apr 2005" refid="17"/>
- </mark-unusable>
- <mark-expected-failures>
- <test name="test_serialization"/>
- <toolset name="msvc-stlport"/>
- <note author="J. López" date="10 Jan 2005">
- This error shows when using the dynamic version of the STLport
- library. The problem is reportedly fixed in STLport 5.0 (in beta
- stage as of this writing.)
- </note>
- </mark-expected-failures>
- </library>
- <!-- optional -->
- <library name="optional">
- <mark-expected-failures>
- <test name="optional_test_ref"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- <note author="Aleksey Gurtovoy" refid="3"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="optional_test_ref_fail1"/>
- <toolset name="borland-5_6_4"/>
- <note author="Fernando Cacciola" refid="2"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="optional_test_fail3a"/>
- <toolset name="gcc-3_3-darwin"/>
- <note author="Fernando Cacciola" refid="2"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="optional_test_inplace_fail2"/>
- <toolset name="gcc-3_3-darwin"/>
- <note author="Fernando Cacciola" refid="2"/>
- </mark-expected-failures>
- </library>
- <!-- serialization -->
- <library name="serialization">
- <mark-unusable>
- <toolset name="acc" />
- <toolset name="vacpp" />
- <toolset name="mipspro" />
- <note author="Robert Ramey" date="13 Jul 2004" refid="9,17,18"/>
- </mark-unusable>
- <mark-unusable>
- <toolset name="gcc-2.95.3-linux"/>
- <note author="Robert Ramey" date="12 Feb 05" refid="18,19"/>
- </mark-unusable>
- <mark-expected-failures>
- <test name="*_warchive"/>
- <test name="test_codecvt_null"/>
- <test name="test_utf8_codecvt"/>
- <toolset name="mingw*"/>
- <toolset name="gcc-2.95.3-linux"/>
- <note author="Robert Ramey" date="12 Feb 05" refid="19"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="test_void_cast*"/>
- <toolset name="msvc*"/>
- <note author="Robert Ramey" date="20 Sep 2004" refid="16,29"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="*_warchive"/>
- <test name="test_codecvt_null"/>
- <test name="test_utf8_codecvt"/>
- <toolset name="*como-4_3_3*"/>
- <note author="Robert Ramey" date="12 Feb 05" refid="5"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="test_demo_portable_archive_dll"/>
- <toolset name="vc*"/>
- <toolset name="msvc*"/>
- <toolset name="iw*"/>
- <note author="Robert Ramey" date="12 Feb 05" refid="2,29"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="test_reset_object_address*"/>
- <toolset name="msvc*"/>
- <note author="Robert Ramey" date="12 Feb 05" refid="6,29"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="test_array*"/>
- <test name="test_demo_fast_archive"/>
- <toolset name="borland*"/>
- <note author="Robert Ramey" date="12 Feb 05" refid="26">
- Borland compilers don't handle templates with array type arguments properly.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="test_demo"/>
- <test name="test_demo_dll"/>
- <test name="test_demo_exception"/>
- <test name="test_demo_exception_dll"/>
- <test name="test_demo_shared_ptr"/>
- <test name="test_demo_xml_save"/>
- <test name="test_demo_xml_load"/>
- <test name="test_demo_xml_save_dll"/>
- <test name="test_demo_xml_load_dll"/>
- <toolset name="msvc*"/>
- <toolset name="vc7"/>
- <note author="Robert Ramey" refid="6"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="test_demo_fast_archive"/>
- <toolset name="msvc*"/>
- <note author="Robert Ramey" refid="6"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="test_const"/>
- <toolset name="msvc*"/>
- <toolset name="vc7"/>
- <note author="Aleksey Gurtovoy" refid="29"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="test_demo_pimpl"/>
- <test name="test_diamond*"/>
- <test name="test_mult_archive_types"/>
- <toolset name="msvc*"/>
- <toolset name="vc7"/>
- <note author="Robert Ramey" refid="6">
- msvc 6 compiler failure. The facility being tested conflicts the the
- compiler in a fundamental way and cannnot be worked around.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="test_mi*"/>
- <toolset name="msvc*"/>
- <note author="Robert Ramey" refid="6">
- msvc 6 compiler failure. The facility being tested conflicts the the
- compiler in a fundamental way and cannnot be worked around.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="*_dll"/>
- <toolset name="msvc-stlport"/>
- <note author="Robert Ramey">
- This failure appears when STLPort is built and used as a DLL with msvc 6.
- STLPort suggests that the next version of STLPort(5.0) will include a workaround
- for this problem.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="*"/>
- <toolset name="gcc-2.95.3-stlport*"/>
- <note author="Aleksey Gurtovoy">
- The library is believed to work in this configuration <i>if compiled against
- Spirit 1.6</i>. The latter is not provided by the particular testing
- environment these tests have been run in.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="test_demo"/>
- <test name="test_demo_exception"/>
- <test name="test_demo_xml*"/>
- <test name="test_shared_ptr*"/>
- <test name="test_mi*"/>
- <test name="test_non_default_ctor2*"/>
- <test name="test_exported*"/>
- <test name="test_registered*"/>
- <test name="test_unregistered*"/>
- <test name="test_shared_ptr*"/>
- <toolset name="cw*"/>
- <note author="Robert Ramey" refid="29">
- All tests that serialize derived pointers currently fail with Metrowerks compilers.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="test_no_rtti_*"/>
- <test name="test_set_*"/>
- <toolset name="borland-5_6_4"/>
- <note author="Aleksey Gurtovoy" refid="29"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="test_array_binary_archive"/>
- <test name="test_array_text_*"/>
- <note author="Aleksey Gurtovoy" refid="29"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="test_demo_fast_archive"/>
- <test name="test_no_rtti_*"/>
- <toolset name="cw*"/>
- <note author="Aleksey Gurtovoy" refid="29"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="test_smart_cast"/>
- <toolset name="intel-7.1-linux"/>
- <note author="Aleksey Gurtovoy" refid="29"/>
- </mark-expected-failures>
- </library>
- <!-- smart_ptr -->
- <library name="smart_ptr">
- <mark-expected-failures>
- <test name="shared_ptr_assign_fail"/>
- <toolset name="gcc-2.9*"/>
- <toolset name="sunpro-5_3-sunos"/>
- <note refid="32" author="Peter Dimov"/>
- </mark-expected-failures>
- </library>
- <!-- spirit -->
- <library name="spirit">
- <mark-unusable>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="borland-5_5_1"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="vc7"/>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <toolset name="sunpro-5_3-sunos"/>
- <note>
- <p>
- Historically, Spirit supported a lot of compilers, including (to some
- extent) poorly conforming compilers such as VC6. Spirit v1.6.x will be
- the last release that will support older poorly conforming compilers.
- Starting from Spirit v1.8.0, ill conforming compilers will not be
- supported. If you are still using one of these older compilers, you can
- still use Spirit v1.6.x.
- </p>
- <p>
- The reason why Spirit v1.6.x worked on old non-conforming compilers is
- that the authors laboriously took the trouble of searching for
- workarounds to make these compilers happy. The process takes a lot of
- time and energy, especially when one encounters the dreaded ICE or
- "Internal Compiler Error". Sometimes searching for a single workaround
- takes days or even weeks. Sometimes, there are no known workarounds. This
- stifles progress a lot. And, as the library gets more progressive and
- takes on more advanced C++ techniques, the difficulty is escalated to
- even new heights.
- </p>
- <p>
- Spirit v1.6.x will still be supported. Maintenance and bug fixes will
- still be applied. There will still be active development for the back-
- porting of new features introduced in Spirit v1.8.0 (and Spirit 1.9.0)
- to lesser able compilers; hopefully, fueled by contributions from the
- community. For instance, there is already a working AST tree back-port
- for VC6 and VC7 by Peder Holt.
- </p>
- </note>
- </mark-unusable>
- <mark-expected-failures>
- <test name="action_tests*"/>
- <toolset name="iw-7_1-vc6"/>
- <note author="Aleksey Gurtovoy" refid="4"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="ast_calc_tests*"/>
- <test name="closure_tests*"/>
- <test name="multi_pass_compile_tests"/>
- <test name="repeat_ast_tests*"/>
- <toolset name="intel-8.0-linux"/>
- <toolset name="intel-8.1-linux"/>
- <note author="Aleksey Gurtovoy">
- This failure is caused by a compiler bug that manifests itself in the
- particular environment/hardware configuration the test has been run in.
- You may or may not experience this issue in your local setup.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="bug_fixes*"/>
- <test name="chset_tests*"/>
- <test name="epsilon_tests*"/>
- <toolset name="vc-8_0"/>
- <note author="Aleksey Gurtovoy">
- This failure is caused by a compiler bug in version 14.00.40809 that has
- been fixed in the latest development "alpha".
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="escape_char_parser_tests*"/>
- <toolset name="intel-7.1-linux"/>
- <toolset name="intel-7.1-stdlib-default-linux"/>
- <note author="Aleksey Gurtovoy" refid="19"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="escape_char_parser_tests*"/>
- <toolset name="iw-7_1-vc6*"/>
- <note author="Aleksey Gurtovoy" refid="28"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="chset_tests*"/>
- <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
- <note author="Aleksey Gurtovoy" refid="28"/>
- </mark-expected-failures>
- </library>
- <!-- function -->
- <library name="function">
- <mark-unusable>
- <toolset name="sunpro-5_3-sunos"/>
- <note author="Douglas Gregor" refid="3"/>
- </mark-unusable>
- <test name="allocator_test">
- <mark-failure>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <note author="B. Dawes" refid="5"/>
- </mark-failure>
- </test>
- <test name="contains_test">
- <mark-failure>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <note refid="3" author="D. Gregor"/>
- </mark-failure>
- </test>
- <test name="function_30">
- <mark-failure>
- <toolset name="vacpp"/>
- <note refid="16" author="D. Gregor"/>
- </mark-failure>
- </test>
- <test name="function_arith_cxx98">
- <mark-failure>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <note author="B. Dawes" refid="3"/>
- </mark-failure>
- </test>
- <test name="function_ref_cxx98">
- <mark-failure>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <note author="B. Dawes" refid="3"/>
- </mark-failure>
- </test>
- <test name="lambda_test">
- <mark-failure>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <note author="B. Dawes" refid="3"/>
- </mark-failure>
- <mark-failure>
- <toolset name="cw-8_3*"/>
- <note author="B. Dawes" refid="2"/>
- </mark-failure>
- </test>
- <test name="lib_function_test">
- <mark-failure>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <note author="B. Dawes" refid="3"/>
- </mark-failure>
- <mark-failure>
- <toolset name="cw-8_3*"/>
- <note author="B. Dawes" refid="2"/>
- </mark-failure>
- </test>
- <test name="mem_fun_cxx98">
- <mark-failure>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <note author="B. Dawes" refid="3"/>
- </mark-failure>
- <mark-failure>
- <toolset name="cw-8_3*"/>
- <note author="B. Dawes" refid="2"/>
- </mark-failure>
- </test>
- <test name="std_bind_cxx98">
- <mark-failure>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <note author="B. Dawes" refid="3"/>
- </mark-failure>
- </test>
- <test name="std_bind_portable">
- <mark-failure>
- <toolset name="msvc"/>
- <note author="B. Dawes" refid="5"/>
- </mark-failure>
- </test>
- <test name="sum_avg_cxx98">
- <mark-failure>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <note author="B. Dawes" refid="3"/>
- </mark-failure>
- </test>
- </library>
- <!-- iterator -->
- <library name="iterator">
- <test name="interoperable_fail">
- <mark-failure>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <note author="B. Dawes" refid="2"/>
- </mark-failure>
- <mark-failure>
- <toolset name="gcc"/>
- <note refid="3"/>
- </mark-failure>
- <mark-failure>
- <toolset name="*"/>
- <note author="D. Abrahams">
- This failure is caused by a compiler bug. Templated operators
- that combine different iterators built with iterator_facade or
- iterator_adaptor may be present in an overload set even when those
- iterators are not interoperable. The usual result is that error
- messages generated by illegal use of these operators will be of
- lower quality.
- </note>
- </mark-failure>
- </test>
- <test name="is_convertible_fail" corner-case="yes">
- <mark-failure>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <note refid="2"/>
- </mark-failure>
- <mark-failure>
- <toolset name="*"/>
- <note author="D. Abrahams">
- This failure is caused by a compiler bug.
- <code>is_convertible<T,U>::value</code> may be true for unrelated
- iterators <code>T</code> and <code>U</code>
- (including many of the Boost specialized adaptors) which use
- <code>enable_if_convertible</code> to restrict the applicability
- of converting constructors, even when <code>T</code> is not
- convertible to <code>U</code> because instantiating the
- conversion will cause a compilation failure.
- </note>
- </mark-failure>
- </test>
- <test name="indirect_iter_member_types" corner-case="yes"/>
- <mark-expected-failures>
- <test name="indirect_iter_member_types"/>
- <test name="pointee"/>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <note author="D. Abrahams">
- This failure is caused by a compiler bug. The
- compiler tends to drop const-ness and as a result
- some indirect_iterators will have pointer and
- reference members of <code>T*</code> and <code>T&</code> that should
- have been <code>T const*</code> and <code>T const&</code>.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="zip_iterator_test"/>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <note author="Aleksey Gurtovoy" date="19 Sep 2004" refid="26"/>
- </mark-expected-failures>
- </library>
- <!-- math -->
- <library name="math">
- <test name="quaternion_mult_incl_test">
- <mark-failure>
- <toolset name="intel-win32"/>
- <note author="B. Dawes" refid="3"/>
- </mark-failure>
- </test>
- </library>
- <!-- numeric/conversion -->
- <library name="numeric/conversion">
- <mark-unusable>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="borland-5_6_4"/>
- <note author="Aleksey Gurtovoy" refid="5"/>
- </mark-unusable>
- <mark-expected-failures>
- <test name="udt_support_test"/>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <toolset name="intel-7.1-linux"/>
- <toolset name="intel-7.1-stdlib-default-linux"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <note author="Aleksey Gurtovoy" refid="2"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="converter_test"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <note author="Aleksey Gurtovoy" refid="2"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="numeric_cast_test"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <note author="Aleksey Gurtovoy" refid="2"/>
- </mark-expected-failures>
- </library>
- <!-- numeric/interval -->
- <library name="numeric/interval">
- <mark-unusable>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- </mark-unusable>
- <test name="test_float">
- <mark-failure>
- <toolset name="borland-5_5_1"/>
- <toolset name="iw-7_1-vc6"/>
- <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
- <note author="G. Melquiond">
- This test ensures the inclusion property of interval
- arithmetic is available for built-in floating-point types
- <code>float</code> and <code>double</code>. If the test
- fails, <code>interval<float></code> and
- <code>interval<double></code> should not be used
- on this compiler/platform since there will be no
- numerical guarantee.
- </note>
- </mark-failure>
- </test>
- <mark-expected-failures>
- <test name="cmp_exn"/>
- <test name="cmp_set"/>
- <test name="cmp_tribool"/>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <note author="Aleksey Gurtovoy" refid="2"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="det"/>
- <toolset name="cw-8_3*"/>
- <note author="Aleksey Gurtovoy" refid="2"/>
- </mark-expected-failures>
- </library>
- <!-- numeric/ublas -->
- <library name="numeric/ublas">
- <mark-unusable>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <note author="M.Stevens" refid="17"/>
- </mark-unusable>
- <mark-unusable>
- <toolset name="cw-8_3"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- <toolset name="iw-7_1-vc6"/>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <note author="M.Stevens" refid="30"/>
- </mark-unusable>
- <test name="test2">
- <mark-failure>
- <toolset name="tru64cxx65-041"/>
- <note author="M.Stevens" refid="6"/>
- </mark-failure>
- </test>
- </library>
- <!-- program_options -->
- <library name="program_options">
- <!-- Mark unusable toolsets -->
- <mark-unusable>
- <toolset name="gcc-2.95.3-linux"/>
- <note>
- The failure is caused by standard library deficiencies
- -- it lacks the basic_string class template and
- the <locale> header.
- </note>
- </mark-unusable>
- <mark-unusable>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <note refid="2"/>
- </mark-unusable>
- <!-- Mark expected failures -->
- <test name="unicode_test*">
- <mark-failure>
- <toolset name="iw-7_1-vc6"/>
- <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <note>The failures are caused by problems
- with std::locale implementation</note>
- </mark-failure>
- </test>
- <test name="options_description_test_dll">
- <mark-failure>
- <toolset name="msvc"/>
- <toolset name="iw-7_1-vc6"/>
- <note refid="23"/>
- </mark-failure>
- </test>
- <test name="variable_map_test_dll">
- <mark-failure>
- <toolset name="iw-7_1-vc6"/>
- <note refid="23"/>
- </mark-failure>
- </test>
- <test name="*dll">
- <mark-failure>
- <toolset name="cw-8_3*"/>
- <note refid="18"/>
- </mark-failure>
- </test>
- <test name="*dll">
- <mark-failure>
- <toolset name="*como-4_3_3*"/>
- <note refid="24"/>
- </mark-failure>
- </test>
- <mark-expected-failures>
- <test name="variable_map_test"/>
- <test name="variable_map_test_dll"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <note>
- The failures are caused by compiler bug: it's not possible to
- explicitly pass template arguments to member template function. The
- failure is serious and makes one of the primary interfaces
- unusable.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="options_description_test_dll"/>
- <test name="parsers_test_dll"/>
- <test name="variable_map_test_dll"/>
- <toolset name="mingw-3*"/>
- <note author="Aleksey Gurtovoy" refid="29"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="unicode_test*"/>
- <toolset name="mingw-3*"/>
- <note refid="19"/>
- </mark-expected-failures>
- </library>
- <!-- python -->
- <library name="python">
- <mark-unusable>
- <toolset name="borland"/>
- <toolset name="borland-5_5_1"/>
- <toolset name="borland-5_6_4"/>
- <note refid="2"/>
- <note refid="17"/>
- </mark-unusable>
- <mark-expected-failures>
- <test name="args"/>
- <test name="auto_ptr"/>
- <test name="builtin_convertors"/>
- <test name="callbacks"/>
- <test name="crossmod_exception"/>
- <test name="data_members"/>
- <test name="enum"/>
- <test name="exception_translator"/>
- <test name="extract"/>
- <test name="implicit"/>
- <test name="iterator"/>
- <test name="list"/>
- <test name="map_indexing_suite"/>
- <test name="object"/>
- <test name="opaque"/>
- <test name="pickle2"/>
- <test name="polymorphism"/>
- <test name="polymorphism2"/>
- <test name="shared_ptr"/>
- <test name="slice"/>
- <test name="test_pointer_adoption"/>
- <test name="try"/>
- <test name="vector_indexing_suite"/>
- <test name="virtual_functions"/>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <note author="D. Abrahams">
- The problems with GCC 2.x only occur when C++ exceptions are thrown and
- the framework catches them, which happens quite often in the tests.
- So technically GCC 2.x is usable if you're careful.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="args"/>
- <test name="auto_ptr"/>
- <test name="back_reference"/>
- <test name="ben_scott1"/>
- <test name="bienstman1"/>
- <test name="bienstman2"/>
- <test name="bienstman3"/>
- <test name="bienstman4"/>
- <test name="bienstman5"/>
- <test name="callbacks"/>
- <test name="cltree"/>
- <test name="const_argument"/>
- <test name="crossmod_exception_a"/>
- <test name="crossmod_exception_b"/>
- <test name="data_members"/>
- <test name="defaults"/>
- <test name="dict"/>
- <test name="docstring"/>
- <test name="enum"/>
- <test name="exception_translator"/>
- <test name="extract"/>
- <test name="implicit"/>
- <test name="injected"/>
- <test name="input_iterator"/>
- <test name="int_map_indexing_suite"/>
- <test name="iterator"/>
- <test name="keywords"/>
- <test name="list"/>
- <test name="long"/>
- <test name="m1"/>
- <test name="m2"/>
- <test name="map_indexing_suite"/>
- <test name="minimal"/>
- <test name="module_tail"/>
- <test name="multi_arg_constructor"/>
- <test name="nested"/>
- <test name="object"/>
- <test name="opaque"/>
- <test name="operators"/>
- <test name="pickle1"/>
- <test name="pickle2"/>
- <test name="pickle3"/>
- <test name="pickle4"/>
- <test name="polymorphism"/>
- <test name="polymorphism2"/>
- <test name="properties"/>
- <test name="register_ptr"/>
- <test name="return_arg"/>
- <test name="shared_ptr"/>
- <test name="slice"/>
- <test name="staticmethod"/>
- <test name="str"/>
- <test name="test_builtin_converters"/>
- <test name="test_pointer_adoption"/>
- <test name="tuple"/>
- <test name="vector_indexing_suite"/>
- <test name="virtual_functions"/>
- <toolset name="intel-7.1-linux"/>
- <toolset name="intel-8.0-linux"/>
- <note author="Aleksey Gurtovoy">
- The library is <a href="http://article.gmane.org/gmane.comp.lib.boost.devel/110420">known to work</a>
- in this configuration. The failures are due to configuration issues of
- the particular testing environment these tests have been run in. The
- regression runners and library developers are aware of the problem and
- plan to fix it for the next release.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="builtin_converters"/>
- <test name="extract"/>
- <test name="list"/>
- <test name="operators"/>
- <test name="pickle1"/>
- <test name="pickle2"/>
- <test name="pickle3"/>
- <test name="pickle4"/>
- <toolset name="gcc-3.4.2-linux"/>
- <note author="Aleksey Gurtovoy">
- The test is <a href="http://article.gmane.org/gmane.comp.lib.boost.devel/110671">known to work</a>
- in this configuration. The failures are due to configuration issues of
- the particular testing environment these tests have been run in.
- </note>
- </mark-expected-failures>
- </library>
- <!-- random -->
- <library name="random">
- <mark-unusable>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <note author="B. Dawes" refid="10"/>
- </mark-unusable>
- <test name="random*">
- <mark-failure>
- <toolset name="intel-win32-8_0"/>
- <note author="S. Slapeta" refid="3"/>
- </mark-failure>
- </test>
- <test name="random_test">
- <mark-failure>
- <toolset name="cw-8_3*"/>
- <note author="B. Dawes" refid="3"/>
- </mark-failure>
- <mark-failure>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <note author="B. Dawes" refid="2"/>
- </mark-failure>
- </test>
- </library>
- <!-- range -->
- <library name="range">
- <mark-unusable>
- <!-- <toolset name="gcc-2.95.3*"/> -->
- <toolset name="mipspro"/>
- <note author="Thorsten Ottosen"/>
- </mark-unusable>
- <mark-expected-failures>
- <test name="array_test"/>
- <toolset name="como-4_3_3*"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- <note refid="27" author="Thorsten Ottosen"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="iterator_range"/>
- <toolset name="cw-8_3*"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- <toolset name="tru64cxx65"/>
- <note author="Thorsten Ottosen">
- For most compilers this is due to problems
- with built-in arrays (notably char arrays) and operator==()
- and operator!=() for iterator_range. Thus, not using built-in arrays
- fixes the problem.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="reversible_range_test"/>
- <toolset name="vc7"/>
- <toolset name="tru64cxx65"/>
- <note author="Thorsten Ottosen">
- This test probably fails because it uses built-in arrays. So do expect these
- functions to work in normal code.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="string_test"/>
- <toolset name="vc7"/>
- <toolset name="tru64cxx65"/>
- <note author="Thorsten Ottosen">
- The string functionality is expected to work if
- the user employs std::string.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="sub_range"/>
- <toolset name="vc-8_0"/>
- <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- <toolset name="cw-8_3*"/>
- <toolset name="tru64cxx65"/>
- <note refid="6" author="Thorsten Ottosen">
- For most compilers this is due to problems
- with built-in arrays (notably char arrays) and operator==()
- and operator!=() for iterator_range. Thus, not using built-in arrays
- fixes the problem.
- </note>
- </mark-expected-failures>
- </library>
- <!-- regex -->
- <library name="regex">
- <test name="regex_token_iterator_eg_2">
- <mark-failure>
- <toolset name="msvc"/>
- <note author="J. Maddock"/>
- </mark-failure>
- </test>
- <test name="posix_api_check">
- <mark-failure>
- <toolset name="como-4_3_3-vc7*"/>
- <note author="J. Maddock"/>
- </mark-failure>
- </test>
- <test name="*_dll">
- <mark-failure>
- <toolset name="*como-4_3_3*"/>
- <note author="J. Maddock"/>
- </mark-failure>
- </test>
- <test name="concept_check">
- <mark-failure>
- <toolset name="vc-8_0"/>
- <toolset name="sunpro-5_3-sunos"/>
- <toolset name="tru64cxx65-042"/>
- <note author="John Maddock" refid="2"/>
- </mark-failure>
- </test>
- <mark-expected-failures>
- <test name="regex_regress"/>
- <test name="regex_regress_dll"/>
- <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
- <note author="John Maddock" refid="29"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="unicode_iterator_test"/>
- <toolset name="borland-5_6_4"/>
- <note author="John Maddock" refid="6"/>
- </mark-expected-failures>
- </library>
- <!-- signals -->
- <library name="signals">
- <mark-unusable>
- <toolset name="sunpro-5_3-sunos"/>
- </mark-unusable>
- <test name="dead_slot_test">
- <mark-failure>
- <toolset name="*como-4_3_3*"/>
- <note refid="3" author="D. Gregor"/>
- </mark-failure>
- </test>
- <test name="signal_test">
- <mark-failure>
- <toolset name="cw-8_3*"/>
- <note author="B. Dawes" refid="2"/>
- </mark-failure>
- <mark-failure>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="vc7"/>
- <note author="B. Dawes" refid="3"/>
- </mark-failure>
- </test>
- <test name="trackable_test">
- <mark-failure>
- <toolset name="*como-4_3_3*"/>
- <note refid="3" author="D. Gregor"/>
- </mark-failure>
- </test>
- </library>
- <!-- static_assert -->
- <library name="static_assert">
- <test name="static_assert_test_fail_8">
- <mark-failure>
- <toolset name="cw-8_3*"/>
- <note author="B. Dawes" refid="3"/>
- </mark-failure>
- </test>
- <test name="static_assert_example_2">
- <mark-failure>
- <toolset name="sunpro-5_3-sunos"/>
- <note author="J. Maddock" refid="4"/>
- </mark-failure>
- </test>
- </library>
- <!-- test -->
- <library name="test">
- <mark-expected-failures>
- <test name="custom_exception_test"/>
- <toolset name="msvc*"/>
- <note author="Gennadiy Rozental" refid="2"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="errors_handling_test"/>
- <toolset name="*como-4_3_3*"/>
- <note author="B. Dawes" refid="3"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="token_iterator_test"/>
- <toolset name="msvc-stlport"/>
- <note refid="3"/>
- </mark-expected-failures>
- <mark-expected-failures reason="?">
- <test name="token_iterator_test"/>
- <toolset name="iw-7_1-vc6"/>
- <toolset name="msvc"/>
- <toolset name="gcc-3.4.2-linux"/>
- <note refid="29"/>
- </mark-expected-failures>
- <mark-expected-failures reason="?">
- <test name="basic_cstring_test"/>
- <toolset name="gcc-2.95.3-linux"/>
- <note refid="29"/>
- </mark-expected-failures>
- </library>
- <!-- thread -->
- <library name="thread">
- <mark-unusable>
- <toolset name="*como-4_3_3*"/>
- <note author="B. Dawes" refid="10"/>
- </mark-unusable>
- <test name="test_mutex">
- <mark-failure>
- <toolset name="vc7"/>
- <note author="B. Dawes" refid="0"/>
- <note author="B. Dawes" refid="6"/>
- </mark-failure>
- </test>
- <test name="test_tss_lib">
- <mark-failure>
- <toolset name="mingw*"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="cw-8_3*"/>
- <toolset name="cw-9_3"/>
- <toolset name="vc7"/>
- <note author="Aleksey Gurtovoy" date="19 Sep 2004">
- This functionality has not been implemented yet. The library
- developers plan to implement it for the next release.
- </note>
- </mark-failure>
- </test>
- <mark-expected-failures>
- <test name="*_lib"/>
- <toolset name="intel-8.0-linux*"/>
- <note author="Aleksey Gurtovoy">
- This failure is caused by a conflict between the compiler
- and the testing environment: the tests are run on a platform with
- <i>too recent</i> version of glibc, which is not currently
- supported by the compiler vendor (Intel).
- If you are having the same problem and <i>really</i> want to make
- things work, renaming <code>strol</code> symbol in the
- compiler's static runtime library (<code>libcprts.a</code>) to
- something else is known to resolve the issue.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="test_barrier_lib"/>
- <toolset name="vc-8_0"/>
- <note author="Aleksey Gurtovoy" refid="6"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="test_thread"/>
- <toolset name="vc-7_1"/>
- <note author="Aleksey Gurtovoy" refid="6"/>
- </mark-expected-failures>
- <mark-expected-failures reason="?">
- <test name="*_lib"/>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <note author="Aleksey Gurtovoy" refid="29"/>
- </mark-expected-failures>
- </library>
- <!-- tuple -->
- <library name="tuple">
- <mark-unusable>
- <toolset name="sunpro-5_3-sunos"/>
- </mark-unusable>
- <test name="io_test">
- <toolset name="intel-win32"/>
- <note author="B. Dawes" refid="3"/>
- </test>
- </library>
- <!-- type_traits -->
- <library name="type_traits">
- <mark-expected-failures>
- <test name="function_traits_test"/>
- <test name="remove_bounds_test"/>
- <test name="remove_const_test"/>
- <test name="remove_cv_test"/>
- <test name="remove_pointer_test"/>
- <test name="remove_reference_test"/>
- <test name="remove_volatile_test"/>
- <test name="decay_test"/>
- <test name="extent_test"/>
- <test name="remove_extent_test"/>
- <test name="remove_all_extents_test"/>
- <test name="rank_test"/>
- <test name="is_unsigned_test"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- <note author="Aleksey Gurtovoy">
- This failure is caused by the lack of compiler support for class template
- partial specialization. A limited subset of the tested functionality is
- available on the compiler through a user-side workaround (see
- <a href="http://www.boost.org/libs/type_traits/index.html#transformations">
- http://www.boost.org/libs/type_traits/index.html#transformations</a> for
- details).
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="tricky_incomplete_type_test"/>
- <test name="decay_test"/>
- <test name="extent_test"/>
- <test name="is_base_of_test"/>
- <test name="rank_test"/>
- <test name="remove_all_extents_test"/>
- <test name="remove_extent_test"/>
- <test name="tricky_function_type_test"/>
- <toolset name="borland-5_6_4"/>
- <note author="John Maddock" refid="2"/>
- </mark-expected-failures>
- <test name="tricky_is_enum_test">
- <mark-failure>
- <toolset name="borland-5_6_4"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- </mark-failure>
- </test>
- <test name="tricky_incomplete_type_test">
- <mark-failure>
- <toolset name="iw-7_1*"/>
- <note author="John Maddock" refid="2"/>
- </mark-failure>
- </test>
- <test name="is_abstract_test">
- <mark-failure>
- <toolset name="borland-5_6_4"/>
- <toolset name="cw-8_3*"/>
- <toolset name="cw-9_3*"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- <toolset name="mingw-3_3*"/>
- <toolset name="gcc-2*"/>
- <toolset name="gcc-3.2*"/>
- <toolset name="gcc-3.3*"/>
- <toolset name="sunpro-5_3-sunos"/>
- <toolset name="tru64cxx65-042"/>
- <toolset name="darwin"/>
- <toolset name="mingw"/>
- <note author="Aleksey Gurtovoy">
- This functionality is available only on compilers that implement C++ Core Language
- <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#337">Defect Report 337</a>.
- </note>
- </mark-failure>
- </test>
- <mark-expected-failures>
- <test name="decay_test"/>
- <test name="extent_test"/>
- <test name="has_nothrow_assign_test"/>
- <test name="has_nothrow_constr_test"/>
- <test name="has_nothrow_copy_test"/>
- <test name="has_trivial_assign_test"/>
- <test name="has_trivial_constr_test"/>
- <test name="has_trivial_copy_test"/>
- <test name="has_trivial_destructor_test"/>
- <test name="is_array_test"/>
- <test name="is_base_and_derived_test"/>
- <test name="is_base_of_test"/>
- <test name="is_class_test"/>
- <test name="is_convertible_test"/>
- <test name="is_object_test"/>
- <test name="is_pod_test"/>
- <test name="is_polymorphic_test"/>
- <test name="rank_test"/>
- <test name="remove_all_extents_test"/>
- <test name="remove_bounds_test"/>
- <test name="remove_extent_test"/>
- <toolset name="sunpro-5_3-sunos"/>
-
- <note author="John Maddock">
- The Type Traits library is broken when used with Sunpro-5.3 and the
- argument to the template is an array or function type. Most other argument types
- do work as expected: in other words the functionality is limited
- with this compiler, but not so much as to render the library unuseable.
- </note>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="is_empty_test"/>
- <test name="is_function_test"/>
- <test name="is_member_func_test"/>
- <test name="is_member_obj_test"/>
- <test name="is_reference_test"/>
- <test name="tricky_function_type_test"/>
- <test name="tricky_incomplete_type_test"/>
- <test name="tricky_is_enum_test"/>
- <toolset name="sunpro-5_3-sunos"/>
- <note author="John Maddock" refid="2"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="tricky_function_type_test"/>
- <test name="is_convertible_test"/>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <toolset name="gcc-2.95.3-linux"/>
- <note author="John Maddock" refid="2"/>
- </mark-expected-failures>
- <mark-expected-failures>
- <test name="aligned_storage_test"/>
- <toolset name="cw-8_3"/>
- <note author="John Maddock">
- Older versions of MWCW incorrectly align pointers to member functions
- (they use 12-byte boundaries, rather than a power-of-2 boundary),
- leading to alignment_of / aligned_storage
- to fail with these types on this compiler.
- </note>
- </mark-expected-failures>
- </library>
- <!-- utility/enable_if -->
- <library name="utility/enable_if">
- <mark-unusable>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="cw-8_3*"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- <note refid="3"/>
- </mark-unusable>
- </library>
- <!-- utility -->
- <library name="utility">
- <test name="addressof_test">
- <mark-failure>
- <toolset name="sunpro-5_3-sunos"/>
- <note author="D. Gregor" refid="3"/>
- </mark-failure>
- </test>
- <test name="fun_out_iter_example">
- <mark-failure>
- <toolset name="como-win32"/>
- <note author="B. Dawes" refid="4"/>
- </mark-failure>
- </test>
- <test name="result_of_test">
- <mark-failure>
- <toolset name="borland-5*"/>
- <toolset name="cw-8_3*"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- <toolset name="gcc-2.95.3*"/>
- <toolset name="sunpro-5_3-sunos"/>
- <note refid="3" author="D. Gregor"/>
- </mark-failure>
- </test>
- <mark-expected-failures>
- <test name="value_init_test"/>
- <toolset name="msvc*"/>
- <toolset name="vc7"/>
- <note author="Aleksey Gurtovoy">
- This failure is caused by a compiler bug (default-constructed scalar
- types are not zero-initialized) that has been fixed in the latest
- versions of the compiler (VC 7.1 and greater).
- </note>
- </mark-expected-failures>
- </library>
- <!-- variant -->
- <library name="variant">
- <mark-unusable>
- <toolset name="mipspro"/>
- <toolset name="sunpro-5_3-sunos"/>
- <note refid="2"/>
- </mark-unusable>
- <test name="recursive_variant_test">
- <mark-failure>
- <toolset name="como-win32"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- <note refid="3"/>
- </mark-failure>
- </test>
- <mark-expected-failures>
- <test name="recursive_variant_test"/>
- <test name="variant_test1"/>
- <test name="variant_test5"/>
- <test name="variant_visit_test"/>
- <toolset name="borland"/>
- <toolset name="borland-5_6_4"/>
- <note author="Aleksey Gurtovoy" refid="3"/>
- </mark-expected-failures>
- <test name="variant_reference_test">
- <mark-failure>
- <toolset name="cw-8_3*"/>
- <toolset name="msvc"/>
- <toolset name="msvc-stlport"/>
- <toolset name="vc7"/>
- <note refid="3"/>
- </mark-failure>
- <mark-failure>
- <toolset name="intel-win32"/>
- <toolset name="iw-7_1*"/>
- <toolset name="intel-7.1*"/>
- <note refid="2"/>
- </mark-failure>
- </test>
- </library>
- <!-- wave -->
- <library name="wave">
- <mark-unusable>
- <toolset name="msvc"/>
- <toolset name="sunpro-5_3-sunos"/>
- <toolset name="msvc-stlport"/>
- <toolset name="borland-5_5_1"/>
- <toolset name="borland-5_6_4"/>
- <toolset name="gcc-2.95.3-linux"/>
- <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
- <note refid="29"/>
- </mark-unusable>
- <mark-unusable>
- <toolset name="vc7"/>
- <note>
- This toolset isn't supported because of the used Spirit V1.8.x, which in turn is
- not usable with this toolset.
- </note>
- </mark-unusable>
- <mark-unusable>
- <toolset name="intel-8.1-linux"/>
- <note refid="26"/>
- </mark-unusable>
- </library>
- <!-- /////////////// Standard note definitions /////////////// -->
- <note id="0">
- This test fails only intermittently.
- </note>
- <note id="1">
- The failure is caused by a problem in Boost code. The Boost developers is aware of
- the problem and plan to fix it.
- </note>
- <note id="2">
- The failure is caused by a compiler bug.
- </note>
- <note id="3">
- The failure is caused by a compiler bug, which has been reported to the compiler
- supplier (or is already known to them).
- </note>
- <note id="4">
- The failure is caused by a standard library bug.
- </note>
- <note id="5">
- The failure is caused by a standard library bug, which has been reported to the
- standard library supplier (or is already known to them).
- </note>
- <note id="6">
- The failure is probably caused by the test code, harness, or configuration. Thus
- it may not affect users of the library.
- </note>
- <note id="9">
- The failure is serious and likely to prevent all use of this Boost library with this compiler.
- </note>
- <note id="10">
- The failure is serious and likely to prevent all use of this Boost library with this
- compiler. The failure is caused by a compiler bug, which has been reported to the compiler
- supplier (or is already known to them).
- </note>
- <note id="14">
- The failure is caused by a platform API bug.
- </note>
- <note id="15">
- The failure is caused by a platform API bug, which has been reported to the platform API
- supplier (or is already known to them).
- </note>
- <note id="16">
- The failure is not serious and will not affect most users. The library degrades gracefully.
- </note>
- <note id="17">
- This compiler's bugs are not supported by the library.
- </note>
- <note id="18">
- Locales missing or adequately supported by this compiler.
- </note>
- <note id="19">
- Missing or inadequate wchar/wstring/wstream support for this compiler.
- </note>
- <note id="20">
- No std iterator traits for this compiler.
- </note>
- <note id="21">
- Library has limited input/output support due to compiler inadequacies.
- </note>
- <note id="22">
- No high precision clock for this platform.
- </note>
- <note id="23">
- A bug in standard library prevents passing std::set from DLL to
- application. A fixed <tree> header is available from
- http://www.dinkumware.com/vc_fixes.html.
- </note>
- <note id="24">
- Although the documentation from the Comeau website would make it appear
- that windows DLL's are supported using the --windows option, after some
- experimentation we have been unsuccessful in making dll configurations
- work correctly.
- </note>
- <note id="25">
- The failure is caused by a runtime limitation. Locale support is only
- available with the static linked variant of the runtime. Generally
- the dynamic linked variant is required when building dynamic modules,
- DLL, <code>so</code>, etc.
- </note>
- <note id="26">
- This failure is caused by a compiler bug with no known workaround.
- Patches are welcome!
- </note>
- <note id="27" >
- This failure is caused by bugs in the standard library implementation and/or
- bugs in the compiler.
- </note>
- <note id="28">
- Unresearched failure, please contact library developers for more
- information about possible causes.
- </note>
- <note id="29">
- The test fails due to unresearched issues. The library
- developers are aware of this failure, but need help with
- investigating/addressing it for future releases.
- </note>
- <note id="30">
- The support for this deficient compiler will be dropped starting
- from Boost 1.33.0 release. Please use one of the previous Boost
- releases if you need the library to work on this compiler.
- </note>
- <note id="31">
- This failure is caused by compiler bugs or limitations. Some advanced
- or esoteric library features may be unavailable or only partially available.
- This does not impact most common uses of the library.
- </note>
- <note id="32">
- This failure is caused by a compiler bug. Certain code constructs that should
- fail compilation are accepted by the compiler. This can mask some programming
- errors, but does not impact the usability of the library.
- </note>
- </explicit-failures-markup>
|