explicit-failures-markup.xml 74 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046
  1. <explicit-failures-markup
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="explicit-failures.xsd"
  4. >
  5. <!--
  6. The following online services can be used to validate your changes to this file:
  7. - http://apps.gotdotnet.com/xmltools/xsdvalidator/
  8. When using the gotdotnet tool you need to provide both the explicit-failures-markup.xml
  9. file as the XML document and the explicit-failures.xsd as the schema document. Use the
  10. browse buttons to select them from your local hard drive.
  11. - http://tools.decisionsoft.com/schemaValidate.html
  12. -->
  13. <!-- /////////////// Toolsets /////////////// -->
  14. <mark-toolset name="borland-5_6_4" status="required"/>
  15. <mark-toolset name="cw-9_3" status="required"/>
  16. <mark-toolset name="cw-8_3" status="required"/>
  17. <mark-toolset name="msvc" status="required"/>
  18. <mark-toolset name="msvc-stlport" status="required"/>
  19. <mark-toolset name="vc7" status="required"/>
  20. <mark-toolset name="vc-7_1" status="required"/>
  21. <mark-toolset name="vc-8_0" status="required"/>
  22. <mark-toolset name="mingw-3_4_2" status="required"/>
  23. <mark-toolset name="mingw-3_3_1" status="required"/>
  24. <mark-toolset name="iw-7_1-vc6" status="required"/>
  25. <mark-toolset name="iw-7_1-vc6-stlp-4_5_3" status="required"/>
  26. <mark-toolset name="intel-win32-8_0" status="required"/>
  27. <mark-toolset name="gcc-2.95.3-linux" status="required"/>
  28. <mark-toolset name="gcc-2.95.3-stlport-4.5.3-linux" status="required"/>
  29. <mark-toolset name="gcc-3.3.3-linux" status="required"/>
  30. <mark-toolset name="gcc-3.4.2-linux" status="required"/>
  31. <mark-toolset name="intel-7.1-linux" status="required"/>
  32. <mark-toolset name="intel-8.0-linux" status="required"/>
  33. <!-- /////////////// Libraries /////////////// -->
  34. <!-- string_algo -->
  35. <library name="algorithm/string">
  36. <mark-unusable>
  37. <toolset name="borland"/>
  38. <toolset name="borland-5_6_4"/>
  39. <toolset name="msvc"/>
  40. <toolset name="msvc-stlport"/>
  41. <toolset name="iw-7_1-vc6"/>
  42. <toolset name="gcc-2.95.3-linux"/>
  43. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  44. <toolset name="mipspro"/>
  45. <note author="P.Droba">
  46. The compiler does not support features that are essential for the library.
  47. </note>
  48. </mark-unusable>
  49. </library>
  50. <!-- array -->
  51. <library name="array">
  52. <test name="array3">
  53. <mark-failure>
  54. <toolset name="borland"/>
  55. <toolset name="borland-5_6_4"/>
  56. <toolset name="msvc"/>
  57. <toolset name="vc7"/>
  58. <note refid="3"/>
  59. </mark-failure>
  60. <mark-failure>
  61. <toolset name="sunpro"/>
  62. <note refid="4"/>
  63. </mark-failure>
  64. </test>
  65. <test name="array4">
  66. <mark-failure>
  67. <toolset name="borland"/>
  68. <toolset name="borland-5_6_4"/>
  69. <toolset name="msvc"/>
  70. <toolset name="vc7"/>
  71. <note refid="3"/>
  72. </mark-failure>
  73. </test>
  74. </library>
  75. <!-- assign -->
  76. <library name="assign">
  77. <mark-expected-failures>
  78. <test name="array"/>
  79. <toolset name="msvc-stlport"/>
  80. <toolset name="vc7"/>
  81. <note author="Thorsten Ottosen" >
  82. The test would (most likely) compile and run properly if the workaround
  83. syntax .to_container( c ) was applied to all list_of() expressions.
  84. </note>
  85. </mark-expected-failures>
  86. <mark-expected-failures>
  87. <test name="email_example"/>
  88. <toolset name="gcc-2.95.3*"/>
  89. <note refid="27" author="Thorsten Ottosen"/>
  90. </mark-expected-failures>
  91. <mark-expected-failures>
  92. <test name="list_inserter"/>
  93. <toolset name="vc7"/>
  94. <note refid="6" author="Thorsten Ottosen"/>
  95. </mark-expected-failures>
  96. <mark-expected-failures>
  97. <test name="list_of"/>
  98. <toolset name="borland-5_6_4"/>
  99. <toolset name="msvc"/>
  100. <toolset name="msvc-stlport"/>
  101. <toolset name="vc7"/>
  102. <note author="Thorsten Ottosen" >
  103. The test would (most likely) compile and run properly if the workaround
  104. syntax .to_container( c ) was applied to all list_of() expressions.
  105. </note>
  106. </mark-expected-failures>
  107. <mark-expected-failures>
  108. <test name="multi_index_container"/>
  109. <toolset name="borland-5_6_4"/>
  110. <toolset name="gcc-2.95.3*"/>
  111. <toolset name="intel-8.0-linux"/>
  112. <toolset name="intel-8.1-linux"/>
  113. <toolset name="gcc-3.4.1*"/>
  114. <toolset name="gcc-3.4.2*"/>
  115. <note refid="27" author="Thorsten Ottosen"/>
  116. </mark-expected-failures>
  117. <mark-expected-failures>
  118. <test name="multi_index_container"/>
  119. <toolset name="msvc"/>
  120. <toolset name="msvc-stlport"/>
  121. <toolset name="vc7"/>
  122. <toolset name="mipspro"/>
  123. <toolset name="tru64cxx65"/>
  124. <note author="Thorsten Ottosen" >
  125. The test would (most likely) compile and run properly if the workaround
  126. syntax .to_container( c ) was applied to all list_of() expressions.
  127. </note>
  128. </mark-expected-failures>
  129. <mark-expected-failures>
  130. <test name="my_vector_example"/>
  131. <toolset name="gcc-2.95.3*"/>
  132. <note refid="27" author="Thorsten Ottosen"/>
  133. </mark-expected-failures>
  134. </library>
  135. <!-- bind-->
  136. <library name="bind">
  137. <mark-expected-failures>
  138. <test name="bind_cv_test"/>
  139. <test name="bind_stateful_test"/>
  140. <toolset name="intel-7.1-linux"/>
  141. <toolset name="intel-7.1-stdlib-default-linux"/>
  142. <note refid="2" author="Aleksey Gurtovoy"/>
  143. </mark-expected-failures>
  144. </library>
  145. <!-- concept_check -->
  146. <library name="concept_check">
  147. <test name="class_concept_fail_expected">
  148. <mark-failure>
  149. <toolset name="cw-8_3*"/>
  150. <note author="B. Dawes" refid="3"/>
  151. </mark-failure>
  152. </test>
  153. </library>
  154. <!-- config -->
  155. <library name="config">
  156. <test name="config_test">
  157. <mark-failure>
  158. <toolset name="intel-win32"/>
  159. <note author="B. Dawes" refid="3"/>
  160. </mark-failure>
  161. </test>
  162. <test name="config_link_test">
  163. <mark-failure>
  164. <toolset name="*como-4_3_3-vc7*"/>
  165. <note author="J. Maddock" refid="3"/>
  166. </mark-failure>
  167. </test>
  168. <test name="limits_test">
  169. <mark-failure>
  170. <toolset name="cw-8_3*"/>
  171. <note author="B. Dawes" refid="3"/>
  172. </mark-failure>
  173. </test>
  174. <test name="limits_test">
  175. <mark-failure>
  176. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  177. <note author="Aleksey Gurtovoy" refid="4"/>
  178. </mark-failure>
  179. </test>
  180. </library>
  181. <!-- conversion -->
  182. <library name="conversion">
  183. <test name="lexical_cast_test">
  184. <mark-failure>
  185. <toolset name="vc-8_0"/>
  186. <note author="Aleksey Gurtovoy" refid="4"/>
  187. </mark-failure>
  188. </test>
  189. </library>
  190. <!-- date_time -->
  191. <library name="date_time">
  192. <mark-unusable>
  193. <toolset name="msvc-stlport"/>
  194. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  195. <toolset name="iw-7_1-vc6"/>
  196. </mark-unusable>
  197. <test name="testgreg_serialize*">
  198. <mark-failure>
  199. <toolset name="borland*"/>
  200. <toolset name="msvc*"/>
  201. <toolset name="mingw*"/>
  202. <toolset name="gcc-2.*"/>
  203. <note author="B. Garst">The serialization library does not support this compiler.
  204. </note>
  205. </mark-failure>
  206. </test>
  207. <test name="testtime_serialize*">
  208. <mark-failure>
  209. <toolset name="borland*"/>
  210. <toolset name="msvc*"/>
  211. <toolset name="mingw*"/>
  212. <toolset name="gcc-2.*"/>
  213. <note author="B. Garst">The serialization library does not support this compiler.
  214. </note>
  215. </mark-failure>
  216. </test>
  217. <test name="testdate_iterator">
  218. <mark-failure>
  219. <toolset name="intel-7.1-stdlib-default-linux"/>
  220. <toolset name="intel-7.1-linux"/>
  221. <note author="J. Garland" refid="19,21"/>
  222. </mark-failure>
  223. </test>
  224. <test name="testdate_iterator_dll">
  225. <mark-failure>
  226. <toolset name="intel-7.1-stdlib-default-linux"/>
  227. <toolset name="intel-7.1-linux"/>
  228. <note author="J. Garland" refid="19,21"/>
  229. </mark-failure>
  230. </test>
  231. <test name="testgeneric_period">
  232. <mark-failure>
  233. <toolset name="intel-7.1-stdlib-default-linux"/>
  234. <toolset name="intel-7.1-linux"/>
  235. <note author="J. Garland">These are strange runtime failures for
  236. which there is no obvious explanation. Later versions of the
  237. Intel compiler (eg:8.0) seem to have resolved the issue.
  238. </note>
  239. </mark-failure>
  240. </test>
  241. <test name="testgreg_wstream">
  242. <mark-failure>
  243. <toolset name="msvc"/>
  244. <toolset name="vc7"/>
  245. <toolset name="cw-8_3*"/>
  246. <toolset name="borland-5_6_4"/>
  247. <toolset name="mingw-3*"/>
  248. <toolset name="gcc"/>
  249. <toolset name="gcc-2.95.3-linux"/>
  250. <toolset name="gcc-3.1-darwin"/>
  251. <toolset name="*como-4_3_3*"/>
  252. <note author="B. Garst" refid="19,21"/>
  253. </mark-failure>
  254. </test>
  255. <test name="testtime_wstream">
  256. <mark-failure>
  257. <toolset name="gcc"/>
  258. <toolset name="gcc-2.95.3-linux"/>
  259. <toolset name="gcc-3.1-darwin"/>
  260. <toolset name="msvc"/>
  261. <toolset name="vc7"/>
  262. <toolset name="borland-5_6_4"/>
  263. <toolset name="mingw-3*"/>
  264. <toolset name="*como-4_3_3*"/>
  265. <note author="B. Garst" refid="19,21,22"/>
  266. </mark-failure>
  267. </test>
  268. <test name="testtime_wstream_std_config">
  269. <mark-failure>
  270. <toolset name="gcc"/>
  271. <toolset name="gcc-2.95.3-linux"/>
  272. <toolset name="gcc-3.1-darwin"/>
  273. <toolset name="msvc"/>
  274. <toolset name="vc7"/>
  275. <toolset name="borland-5_6_4"/>
  276. <toolset name="mingw-3*"/>
  277. <toolset name="*como-4_3_3*"/>
  278. <note author="B. Garst" refid="19,21,22"/>
  279. </mark-failure>
  280. </test>
  281. <test name="testfacet">
  282. <mark-failure>
  283. <toolset name="gcc-2.95.3-linux"/>
  284. <toolset name="gcc-3.1-darwin"/>
  285. <toolset name="msvc"/>
  286. <toolset name="mingw*"/>
  287. <note author="B. Garst" refid="18,19"/>
  288. </mark-failure>
  289. </test>
  290. <test name="testfacet_dll">
  291. <mark-failure>
  292. <toolset name="gcc-2.95.3-linux"/>
  293. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  294. <toolset name="gcc-3.1-darwin"/>
  295. <toolset name="msvc"/>
  296. <toolset name="mingw-3*"/>
  297. <toolset name="*como-4_3_3*"/>
  298. <note author="B. Garst" refid="18,19"/>
  299. </mark-failure>
  300. <mark-failure>
  301. <toolset name="cw-8_3*"/>
  302. <note author="R. Rivera" refid="25"/>
  303. </mark-failure>
  304. </test>
  305. <test name="testday_dll">
  306. <mark-failure>
  307. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  308. </mark-failure>
  309. </test>
  310. <test name="testgreg_year_dll">
  311. <mark-failure>
  312. <toolset name="*como-4_3_3*"/>
  313. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  314. </mark-failure>
  315. </test>
  316. <test name="testparse_date">
  317. <mark-failure>
  318. <toolset name="gcc-2.95.3-linux"/>
  319. <toolset name="msvc"/>
  320. <toolset name="vc7"/>
  321. <note author="B. Garst" refid="18,20"/>
  322. </mark-failure>
  323. </test>
  324. <test name="testmicrosec_time_clock">
  325. <mark-failure>
  326. <toolset name="intel-7.1-stdlib-default-linux"/>
  327. <toolset name="*como-4_3_3*"/>
  328. <toolset name="intel-7.1-linux"/>
  329. <note author="B. Garst" refid="22"/>
  330. </mark-failure>
  331. </test>
  332. <test name="teststreams">
  333. <mark-failure>
  334. <toolset name="gcc"/>
  335. <toolset name="gcc-2.95.3-linux"/>
  336. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  337. <toolset name="gcc-3.1-darwin"/>
  338. <toolset name="msvc"/>
  339. <toolset name="cw-8_3*"/>
  340. <toolset name="vc7"/>
  341. <toolset name="borland-5_6_4"/>
  342. <toolset name="mingw-3*"/>
  343. <toolset name="*como-4_3_3*"/>
  344. <note author="B. Garst" refid="18,19,20"/>
  345. </mark-failure>
  346. </test>
  347. <test name="testdate_dll">
  348. <mark-failure>
  349. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  350. <toolset name="*como-4_3_3*"/>
  351. <note author="J. Garland" date="30 Jan 2004" id="24"/>
  352. </mark-failure>
  353. </test>
  354. <test name="testgreg_day_dll">
  355. <mark-failure>
  356. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  357. <toolset name="*como-4_3_3*"/>
  358. <note author="J. Garland" date="30 Jan 2004" id="24"/>
  359. </mark-failure>
  360. </test>
  361. <test name="*_dll">
  362. <mark-failure>
  363. <toolset name="*como-4_3_3*"/>
  364. <note author="J. Garland" date="30 Jan 2004" id="24"/>
  365. </mark-failure>
  366. </test>
  367. <test name="*">
  368. <mark-failure>
  369. <toolset name="intel-win32"/>
  370. <note refid="10"/>
  371. </mark-failure>
  372. </test>
  373. </library>
  374. <!-- dynamic_bitset -->
  375. <library name="dynamic_bitset">
  376. <test name="dyn_bitset_unit_tests4">
  377. <mark-failure>
  378. <toolset name="cw-9_3"/>
  379. <note author="Aleksey Gurtovoy" refid="2"/>
  380. </mark-failure>
  381. </test>
  382. </library>
  383. <!-- filesystem -->
  384. <library name="filesystem">
  385. <mark-unusable>
  386. <toolset name="intel-7.1-linux"/>
  387. <toolset name="intel-7.1-stdlib-default-linux"/>
  388. <note author="Aleksey Gurtovoy">
  389. Due to to standard library bugs this configuration is not supported by
  390. the most recent version of the library.
  391. </note>
  392. </mark-unusable>
  393. </library>
  394. <!-- format -->
  395. <library name="format">
  396. <mark-unusable>
  397. <toolset name="iw-7_1*"/>
  398. <note author="Aleksey Gurtovoy">
  399. The failure is caused by a standard library bug: the
  400. iostream components fail to handle <code>ios::internal</code>
  401. flag.
  402. </note>
  403. </mark-unusable>
  404. </library>
  405. <!-- graph -->
  406. <library name="graph">
  407. <mark-unusable>
  408. <toolset name="borland-5_6_4"/>
  409. <toolset name="msvc"/>
  410. <toolset name="msvc-stlport"/>
  411. </mark-unusable>
  412. <mark-expected-failures>
  413. <test name="adj_matrix_cc"/>
  414. <test name="bfs_cc"/>
  415. <test name="bundled_properties"/>
  416. <test name="dfs_cc"/>
  417. <test name="dijkstra_cc"/>
  418. <test name="subgraph"/>
  419. <test name="transitive_closure_test"/>
  420. <test name="vector_graph_cc"/>
  421. <toolset name="vc7"/>
  422. <note refid="3" author="D. Gregor"/>
  423. </mark-expected-failures>
  424. <mark-expected-failures>
  425. <test name="betweenness_centrality_test"/>
  426. <toolset name="iw-7_1-vc6*"/>
  427. <toolset name="vc7"/>
  428. <note refid="3" author="Aleksey Gurtovoy"/>
  429. </mark-expected-failures>
  430. </library>
  431. <!-- io-->
  432. <library name="io">
  433. <mark-expected-failures>
  434. <test name="ios_state_unit_test"/>
  435. <toolset name="borland-5_6_4"/>
  436. <toolset name="iw-7_1-vc6*"/>
  437. <toolset name="msvc"/>
  438. <toolset name="msvc-stlport"/>
  439. <note refid="4" author="Aleksey Gurtovoy"/>
  440. </mark-expected-failures>
  441. </library>
  442. <!-- iostreams -->
  443. <library name="iostreams">
  444. <mark-unusable>
  445. <toolset name="sunpro-5_3"/>
  446. <note author="Jonathan Turkanis">
  447. Many compiler-specific workarounds will have to applied before toolset is supported.
  448. </note>
  449. </mark-unusable>
  450. <mark-expected-failures>
  451. <test name="seekable_file_test"/>
  452. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  453. <toolset name="borland-5_6_4"/>
  454. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  455. <toolset name="msvc-stlport"/>
  456. <note author="Jonathan Turkanis">
  457. This failure is a result of an undiagnosed STLPort bug;
  458. the test fails even if all Boost components are replaced by
  459. standard library components.
  460. </note>
  461. </mark-expected-failures>
  462. <mark-expected-failures>
  463. <test name="code_converter_test"/>
  464. <toolset name="gcc-2.95.3-linux"/>
  465. <note author="Jonathan Turkanis">
  466. No wide stream support.
  467. </note>
  468. </mark-expected-failures>
  469. <mark-expected-failures>
  470. <test name="wide_stream_test"/>
  471. <toolset name="gcc-2.95.3-linux"/>
  472. <note author="Jonathan Turkanis">
  473. No wide stream support.
  474. </note>
  475. </mark-expected-failures>
  476. </library>
  477. <!-- lambda -->
  478. <library name="lambda">
  479. <mark-unusable>
  480. <toolset name="msvc"/>
  481. <toolset name="msvc-stlport"/>
  482. <toolset name="borland"/>
  483. <toolset name="borland-5_6_4"/>
  484. <toolset name="borland-5_5_1"/>
  485. <toolset name="vc7"/>
  486. <note refid="17">
  487. </note>
  488. </mark-unusable>
  489. <mark-expected-failures>
  490. <test name="bll_and_function"/>
  491. <toolset name="vc-8_0"/>
  492. <note author="Aleksey Gurtovoy" refid="6"/>
  493. </mark-expected-failures>
  494. </library>
  495. <!-- logic -->
  496. <library name="logic">
  497. <test name="tribool_io_test">
  498. <mark-failure>
  499. <toolset name="msvc-stlport"/>
  500. <toolset name="gcc-2.95.3-linux"/>
  501. <note author="Douglas Gregor" date="27 Jul 2004" refid="4"/>
  502. </mark-failure>
  503. </test>
  504. </library>
  505. <!-- MPL -->
  506. <library name="mpl">
  507. <mark-expected-failures>
  508. <test name="as_sequence"/>
  509. <test name="is_sequence"/>
  510. <test name="has_xxx"/>
  511. <test name="no_has_xxx"/>
  512. <test name="single_view"/>
  513. <toolset name="cw-8_3*"/>
  514. <note author="Aleksey Gurtovoy" date="17 Sep 2004">
  515. This failure is caused by a deficient SFINAE implementation; the bug
  516. was fixed in the next major compiler version (CodeWarrior 9.x).
  517. </note>
  518. </mark-expected-failures>
  519. <mark-expected-failures>
  520. <test name="is_sequence"/>
  521. <test name="as_sequence"/>
  522. <test name="has_xxx"/>
  523. <toolset name="borland-5_6_4"/>
  524. <toolset name="gcc-2.95.3*"/>
  525. <note author="Aleksey Gurtovoy" date="17 Sep 2004">
  526. This failure is caused by a deficient SFINAE implementation.
  527. </note>
  528. </mark-expected-failures>
  529. <mark-expected-failures>
  530. <test name="apply"/>
  531. <test name="for_each"/>
  532. <test name="multiset"/>
  533. <test name="zip_view"/>
  534. <toolset name="borland-5_6_4"/>
  535. <note author="Aleksey Gurtovoy" date="17 Sep 2004" refid="26"/>
  536. </mark-expected-failures>
  537. <mark-expected-failures>
  538. <test name="assert"/>
  539. <test name="at"/>
  540. <test name="back"/>
  541. <test name="front"/>
  542. <test name="has_xxx"/>
  543. <test name="multiset"/>
  544. <test name="no_has_xxx"/>
  545. <test name="zip_view"/>
  546. <toolset name="mipspro"/>
  547. <note author="Aleksey Gurtovoy" date="17 Sep 2004" refid="26"/>
  548. </mark-expected-failures>
  549. <mark-expected-failures>
  550. <test name="quote"/>
  551. <toolset name="borland-5_6_4"/>
  552. <toolset name="msvc*"/>
  553. <toolset name="mipspro"/>
  554. <note author="Aleksey Gurtovoy" date="17 Sep 2004">
  555. This failure is caused by a lack of compiler support for template template
  556. parameters.
  557. </note>
  558. </mark-expected-failures>
  559. <mark-expected-failures>
  560. <test name="map"/>
  561. <test name="set"/>
  562. <test name="set_c"/>
  563. <toolset name="borland-5_6_4"/>
  564. <toolset name="gcc-2.95.3*"/>
  565. <toolset name="mipspro"/>
  566. <note author="Aleksey Gurtovoy" date="17 Sep 2004">
  567. This is an advanced functionality that hasn't been ported to the deficient
  568. compilers (yet). Patches are welcome!
  569. </note>
  570. </mark-expected-failures>
  571. <mark-expected-failures>
  572. <test name="map"/>
  573. <toolset name="msvc*"/>
  574. <toolset name="vc7"/>
  575. <note author="Aleksey Gurtovoy" date="17 Sep 2004">
  576. This is an advanced functionality that hasn't been ported to the deficient
  577. compilers (yet). Patches are welcome!
  578. </note>
  579. </mark-expected-failures>
  580. </library>
  581. <!-- multi_array -->
  582. <library name="multi_array">
  583. <mark-unusable>
  584. <toolset name="borland"/>
  585. <toolset name="borland-5_6_4"/>
  586. <toolset name="borland-5_5_1"/>
  587. <note author="Alisdair Meredith" date="30 Jan 2004">
  588. <p>
  589. This library has never worked [on Borland 5.5.1 and 5.6.4], and the only tests
  590. that 'pass' are compile-fail tests failing for the wrong reasons!
  591. </p>
  592. </note>
  593. </mark-unusable>
  594. <test name="constructors">
  595. <mark-failure>
  596. <toolset name="msvc"/>
  597. <note author="Ronald Garcia" date="13 Jul 2004">
  598. Known error in MSVC. see
  599. <a href="http://boost-consulting.com/boost/libs/multi_index/doc/compiler_specifics.html#msvc_60">
  600. http://boost-consulting.com/boost/libs/multi_index/doc/compiler_specifics.html#msvc_60</a>
  601. for more information.
  602. </note>
  603. </mark-failure>
  604. </test>
  605. <mark-expected-failures>
  606. <test name="assign_to_array"/>
  607. <toolset name="gcc-2.95.3*"/>
  608. <note author="Aleksey Gurtovoy" date="21 Sep 2004" refid="2"/>
  609. </mark-expected-failures>
  610. </library>
  611. <!-- multi_index -->
  612. <library name="multi_index">
  613. <mark-unusable>
  614. <toolset name="borland-5_6_4"/>
  615. <note author="J. L&#243;pez" date="05 Jul 2004" refid="17"/>
  616. </mark-unusable>
  617. <mark-unusable>
  618. <toolset name="gcc-2.95.3-linux"/>
  619. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  620. <note author="J. L&#243;pez" date="09 Jul 2004" refid="17"/>
  621. </mark-unusable>
  622. <mark-unusable>
  623. <toolset name="*como-4_3_3-msvc"/>
  624. <note author="J. L&#243;pez" date="30 Jul 2004">
  625. The VC++ 6.0 backend runs out of internal resources while
  626. trying to process the Comeau output for this library;
  627. Comeau Computing has been asked about a solution.
  628. On the other hand, Comeau 4.3.3 with VC++ 7.0 backend works
  629. fine.
  630. </note>
  631. </mark-unusable>
  632. <mark-expected-failures>
  633. <test name="test_serialization"/>
  634. <toolset name="msvc-stlport"/>
  635. <note author="J. L&#243;pez" date="10 Jan 2005">
  636. This error shows when using the dynamic version of the STLport
  637. library. The problem is reportedly fixed in STLport 5.0 (in beta
  638. stage as of this writing.)
  639. </note>
  640. </mark-expected-failures>
  641. </library>
  642. <!-- optional -->
  643. <library name="optional">
  644. <mark-expected-failures>
  645. <test name="optional_test_ref"/>
  646. <toolset name="msvc"/>
  647. <toolset name="msvc-stlport"/>
  648. <toolset name="vc7"/>
  649. <note author="Aleksey Gurtovoy" refid="3"/>
  650. </mark-expected-failures>
  651. <mark-expected-failures>
  652. <test name="optional_test_ref_fail1"/>
  653. <toolset name="borland-5_6_4"/>
  654. <note author="Fernando Cacciola" refid="2"/>
  655. </mark-expected-failures>
  656. <mark-expected-failures>
  657. <test name="optional_test_fail3a"/>
  658. <toolset name="gcc-3_3-darwin"/>
  659. <note author="Fernando Cacciola" refid="2"/>
  660. </mark-expected-failures>
  661. <mark-expected-failures>
  662. <test name="optional_test_inplace_fail2"/>
  663. <toolset name="gcc-3_3-darwin"/>
  664. <note author="Fernando Cacciola" refid="2"/>
  665. </mark-expected-failures>
  666. </library>
  667. <!-- serialization -->
  668. <library name="serialization">
  669. <mark-unusable>
  670. <toolset name="acc" />
  671. <toolset name="vacpp" />
  672. <toolset name="mipspro" />
  673. <note author="Robert Ramey" date="13 Jul 2004" refid="9,17,18"/>
  674. </mark-unusable>
  675. <mark-unusable>
  676. <toolset name="gcc-2.95.3-linux"/>
  677. <note author="Robert Ramey" date="12 Feb 05" refid="18,19"/>
  678. </mark-unusable>
  679. <mark-expected-failures>
  680. <test name="*_warchive"/>
  681. <test name="test_codecvt_null"/>
  682. <test name="test_utf8_codecvt"/>
  683. <toolset name="mingw*"/>
  684. <toolset name="gcc-2.95.3-linux"/>
  685. <note author="Robert Ramey" date="12 Feb 05" refid="19"/>
  686. </mark-expected-failures>
  687. <mark-expected-failures>
  688. <test name="test_void_cast*"/>
  689. <toolset name="msvc*"/>
  690. <note author="Robert Ramey" date="20 Sep 2004" refid="16,29"/>
  691. </mark-expected-failures>
  692. <mark-expected-failures>
  693. <test name="*_warchive"/>
  694. <test name="test_codecvt_null"/>
  695. <test name="test_utf8_codecvt"/>
  696. <toolset name="*como-4_3_3*"/>
  697. <note author="Robert Ramey" date="12 Feb 05" refid="5"/>
  698. </mark-expected-failures>
  699. <mark-expected-failures>
  700. <test name="test_demo_portable_archive_dll"/>
  701. <toolset name="vc*"/>
  702. <toolset name="msvc*"/>
  703. <toolset name="iw*"/>
  704. <note author="Robert Ramey" date="12 Feb 05" refid="2,29"/>
  705. </mark-expected-failures>
  706. <mark-expected-failures>
  707. <test name="test_reset_object_address*"/>
  708. <toolset name="msvc*"/>
  709. <note author="Robert Ramey" date="12 Feb 05" refid="6,29"/>
  710. </mark-expected-failures>
  711. <mark-expected-failures>
  712. <test name="test_array*"/>
  713. <test name="test_demo_fast_archive"/>
  714. <toolset name="borland*"/>
  715. <note author="Robert Ramey" date="12 Feb 05" refid="26">
  716. Borland compilers don't handle templates with array type arguments properly.
  717. </note>
  718. </mark-expected-failures>
  719. <mark-expected-failures>
  720. <test name="test_demo"/>
  721. <test name="test_demo_dll"/>
  722. <test name="test_demo_exception"/>
  723. <test name="test_demo_exception_dll"/>
  724. <test name="test_demo_shared_ptr"/>
  725. <test name="test_demo_xml_save"/>
  726. <test name="test_demo_xml_load"/>
  727. <test name="test_demo_xml_save_dll"/>
  728. <test name="test_demo_xml_load_dll"/>
  729. <toolset name="msvc*"/>
  730. <toolset name="vc7"/>
  731. <note author="Robert Ramey" refid="6"/>
  732. </mark-expected-failures>
  733. <mark-expected-failures>
  734. <test name="test_demo_fast_archive"/>
  735. <toolset name="msvc*"/>
  736. <note author="Robert Ramey" refid="6"/>
  737. </mark-expected-failures>
  738. <mark-expected-failures>
  739. <test name="test_const"/>
  740. <toolset name="msvc*"/>
  741. <toolset name="vc7"/>
  742. <note author="Aleksey Gurtovoy" refid="29"/>
  743. </mark-expected-failures>
  744. <mark-expected-failures>
  745. <test name="test_demo_pimpl"/>
  746. <test name="test_diamond*"/>
  747. <test name="test_mult_archive_types"/>
  748. <toolset name="msvc*"/>
  749. <toolset name="vc7"/>
  750. <note author="Robert Ramey" refid="6">
  751. msvc 6 compiler failure. The facility being tested conflicts the the
  752. compiler in a fundamental way and cannnot be worked around.
  753. </note>
  754. </mark-expected-failures>
  755. <mark-expected-failures>
  756. <test name="test_mi*"/>
  757. <toolset name="msvc*"/>
  758. <note author="Robert Ramey" refid="6">
  759. msvc 6 compiler failure. The facility being tested conflicts the the
  760. compiler in a fundamental way and cannnot be worked around.
  761. </note>
  762. </mark-expected-failures>
  763. <mark-expected-failures>
  764. <test name="*_dll"/>
  765. <toolset name="msvc-stlport"/>
  766. <note author="Robert Ramey">
  767. This failure appears when STLPort is built and used as a DLL with msvc 6.
  768. STLPort suggests that the next version of STLPort(5.0) will include a workaround
  769. for this problem.
  770. </note>
  771. </mark-expected-failures>
  772. <mark-expected-failures>
  773. <test name="*"/>
  774. <toolset name="gcc-2.95.3-stlport*"/>
  775. <note author="Aleksey Gurtovoy">
  776. The library is believed to work in this configuration <i>if compiled against
  777. Spirit 1.6</i>. The latter is not provided by the particular testing
  778. environment these tests have been run in.
  779. </note>
  780. </mark-expected-failures>
  781. <mark-expected-failures>
  782. <test name="test_demo"/>
  783. <test name="test_demo_exception"/>
  784. <test name="test_demo_xml*"/>
  785. <test name="test_shared_ptr*"/>
  786. <test name="test_mi*"/>
  787. <test name="test_non_default_ctor2*"/>
  788. <test name="test_exported*"/>
  789. <test name="test_registered*"/>
  790. <test name="test_unregistered*"/>
  791. <test name="test_shared_ptr*"/>
  792. <toolset name="cw*"/>
  793. <note author="Robert Ramey" refid="29">
  794. All tests that serialize derived pointers currently fail with Metrowerks compilers.
  795. </note>
  796. </mark-expected-failures>
  797. <mark-expected-failures>
  798. <test name="test_no_rtti_*"/>
  799. <test name="test_set_*"/>
  800. <toolset name="borland-5_6_4"/>
  801. <note author="Aleksey Gurtovoy" refid="29"/>
  802. </mark-expected-failures>
  803. <mark-expected-failures>
  804. <test name="test_array_binary_archive"/>
  805. <test name="test_array_text_*"/>
  806. <note author="Aleksey Gurtovoy" refid="29"/>
  807. </mark-expected-failures>
  808. <mark-expected-failures>
  809. <test name="test_demo_fast_archive"/>
  810. <test name="test_no_rtti_*"/>
  811. <toolset name="cw*"/>
  812. <note author="Aleksey Gurtovoy" refid="29"/>
  813. </mark-expected-failures>
  814. <mark-expected-failures>
  815. <test name="test_smart_cast"/>
  816. <toolset name="intel-7.1-linux"/>
  817. <note author="Aleksey Gurtovoy" refid="29"/>
  818. </mark-expected-failures>
  819. </library>
  820. <!-- spirit -->
  821. <library name="spirit">
  822. <mark-unusable>
  823. <toolset name="msvc"/>
  824. <toolset name="msvc-stlport"/>
  825. <toolset name="borland-5_5_1"/>
  826. <toolset name="borland-5_6_4"/>
  827. <toolset name="vc7"/>
  828. <toolset name="gcc-2.95.3-linux"/>
  829. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  830. <note>
  831. <p>
  832. Historically, Spirit supported a lot of compilers, including (to some
  833. extent) poorly conforming compilers such as VC6. Spirit v1.6.x will be
  834. the last release that will support older poorly conforming compilers.
  835. Starting from Spirit v1.8.0, ill conforming compilers will not be
  836. supported. If you are still using one of these older compilers, you can
  837. still use Spirit v1.6.x.
  838. </p>
  839. <p>
  840. The reason why Spirit v1.6.x worked on old non-conforming compilers is
  841. that the authors laboriously took the trouble of searching for
  842. workarounds to make these compilers happy. The process takes a lot of
  843. time and energy, especially when one encounters the dreaded ICE or
  844. "Internal Compiler Error". Sometimes searching for a single workaround
  845. takes days or even weeks. Sometimes, there are no known workarounds. This
  846. stifles progress a lot. And, as the library gets more progressive and
  847. takes on more advanced C++ techniques, the difficulty is escalated to
  848. even new heights.
  849. </p>
  850. <p>
  851. Spirit v1.6.x will still be supported. Maintenance and bug fixes will
  852. still be applied. There will still be active development for the back-
  853. porting of new features introduced in Spirit v1.8.0 (and Spirit 1.9.0)
  854. to lesser able compilers; hopefully, fueled by contributions from the
  855. community. For instance, there is already a working AST tree back-port
  856. for VC6 and VC7 by Peder Holt.
  857. </p>
  858. </note>
  859. </mark-unusable>
  860. <mark-expected-failures>
  861. <test name="action_tests*"/>
  862. <toolset name="iw-7_1-vc6"/>
  863. <note author="Aleksey Gurtovoy" refid="4"/>
  864. </mark-expected-failures>
  865. <mark-expected-failures>
  866. <test name="ast_calc_tests*"/>
  867. <test name="closure_tests*"/>
  868. <test name="multi_pass_compile_tests"/>
  869. <test name="repeat_ast_tests*"/>
  870. <toolset name="intel-8.0-linux"/>
  871. <toolset name="intel-8.1-linux"/>
  872. <note author="Aleksey Gurtovoy">
  873. This failure is caused by a compiler bug that manifests itself in the
  874. particular environment/hardware configuration the test has been run in.
  875. You may or may not experience this issue in your local setup.
  876. </note>
  877. </mark-expected-failures>
  878. <mark-expected-failures>
  879. <test name="bug_fixes*"/>
  880. <test name="chset_tests*"/>
  881. <test name="epsilon_tests*"/>
  882. <toolset name="vc-8_0"/>
  883. <note author="Aleksey Gurtovoy">
  884. This failure is caused by a compiler bug in version 14.00.40809 that has
  885. been fixed in the latest development "alpha".
  886. </note>
  887. </mark-expected-failures>
  888. <mark-expected-failures>
  889. <test name="escape_char_parser_tests*"/>
  890. <toolset name="intel-7.1-linux"/>
  891. <toolset name="intel-7.1-stdlib-default-linux"/>
  892. <note author="Aleksey Gurtovoy" refid="19"/>
  893. </mark-expected-failures>
  894. <mark-expected-failures>
  895. <test name="escape_char_parser_tests*"/>
  896. <toolset name="iw-7_1-vc6*"/>
  897. <note author="Aleksey Gurtovoy" refid="28"/>
  898. </mark-expected-failures>
  899. <mark-expected-failures>
  900. <test name="chset_tests*"/>
  901. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  902. <note author="Aleksey Gurtovoy" refid="28"/>
  903. </mark-expected-failures>
  904. </library>
  905. <!-- function -->
  906. <library name="function">
  907. <test name="allocator_test">
  908. <mark-failure>
  909. <toolset name="msvc"/>
  910. <toolset name="vc7"/>
  911. <note author="B. Dawes" refid="5"/>
  912. </mark-failure>
  913. </test>
  914. <test name="contains_test">
  915. <mark-failure>
  916. <toolset name="msvc"/>
  917. <toolset name="msvc-stlport"/>
  918. <note refid="3" author="D. Gregor"/>
  919. </mark-failure>
  920. </test>
  921. <test name="function_30">
  922. <mark-failure>
  923. <toolset name="vacpp"/>
  924. <note refid="16" author="D. Gregor"/>
  925. </mark-failure>
  926. </test>
  927. <test name="function_arith_cxx98">
  928. <mark-failure>
  929. <toolset name="borland"/>
  930. <toolset name="borland-5_6_4"/>
  931. <toolset name="msvc"/>
  932. <toolset name="vc7"/>
  933. <note author="B. Dawes" refid="3"/>
  934. </mark-failure>
  935. </test>
  936. <test name="function_ref_cxx98">
  937. <mark-failure>
  938. <toolset name="borland"/>
  939. <toolset name="borland-5_6_4"/>
  940. <toolset name="msvc"/>
  941. <toolset name="vc7"/>
  942. <note author="B. Dawes" refid="3"/>
  943. </mark-failure>
  944. </test>
  945. <test name="lambda_test">
  946. <mark-failure>
  947. <toolset name="borland"/>
  948. <toolset name="borland-5_6_4"/>
  949. <toolset name="msvc"/>
  950. <toolset name="vc7"/>
  951. <note author="B. Dawes" refid="3"/>
  952. </mark-failure>
  953. <mark-failure>
  954. <toolset name="cw-8_3*"/>
  955. <note author="B. Dawes" refid="2"/>
  956. </mark-failure>
  957. </test>
  958. <test name="lib_function_test">
  959. <mark-failure>
  960. <toolset name="borland"/>
  961. <toolset name="borland-5_6_4"/>
  962. <toolset name="msvc"/>
  963. <toolset name="vc7"/>
  964. <note author="B. Dawes" refid="3"/>
  965. </mark-failure>
  966. <mark-failure>
  967. <toolset name="cw-8_3*"/>
  968. <note author="B. Dawes" refid="2"/>
  969. </mark-failure>
  970. </test>
  971. <test name="mem_fun_cxx98">
  972. <mark-failure>
  973. <toolset name="borland"/>
  974. <toolset name="borland-5_6_4"/>
  975. <toolset name="msvc"/>
  976. <toolset name="vc7"/>
  977. <note author="B. Dawes" refid="3"/>
  978. </mark-failure>
  979. <mark-failure>
  980. <toolset name="cw-8_3*"/>
  981. <note author="B. Dawes" refid="2"/>
  982. </mark-failure>
  983. </test>
  984. <test name="std_bind_cxx98">
  985. <mark-failure>
  986. <toolset name="borland"/>
  987. <toolset name="borland-5_6_4"/>
  988. <toolset name="msvc"/>
  989. <toolset name="vc7"/>
  990. <note author="B. Dawes" refid="3"/>
  991. </mark-failure>
  992. </test>
  993. <test name="std_bind_portable">
  994. <mark-failure>
  995. <toolset name="msvc"/>
  996. <note author="B. Dawes" refid="5"/>
  997. </mark-failure>
  998. </test>
  999. <test name="sum_avg_cxx98">
  1000. <mark-failure>
  1001. <toolset name="borland"/>
  1002. <toolset name="borland-5_6_4"/>
  1003. <toolset name="msvc"/>
  1004. <toolset name="vc7"/>
  1005. <note author="B. Dawes" refid="3"/>
  1006. </mark-failure>
  1007. </test>
  1008. </library>
  1009. <!-- iterator -->
  1010. <library name="iterator">
  1011. <test name="interoperable_fail">
  1012. <mark-failure>
  1013. <toolset name="borland"/>
  1014. <toolset name="borland-5_6_4"/>
  1015. <toolset name="msvc"/>
  1016. <toolset name="vc7"/>
  1017. <note author="B. Dawes" refid="2"/>
  1018. </mark-failure>
  1019. <mark-failure>
  1020. <toolset name="gcc"/>
  1021. <note refid="3"/>
  1022. </mark-failure>
  1023. <mark-failure>
  1024. <toolset name="*"/>
  1025. <note author="D. Abrahams">
  1026. This failure is caused by a compiler bug. Templated operators
  1027. that combine different iterators built with iterator_facade or
  1028. iterator_adaptor may be present in an overload set even when those
  1029. iterators are not interoperable. The usual result is that error
  1030. messages generated by illegal use of these operators will be of
  1031. lower quality.
  1032. </note>
  1033. </mark-failure>
  1034. </test>
  1035. <test name="is_convertible_fail" corner-case="yes">
  1036. <mark-failure>
  1037. <toolset name="borland"/>
  1038. <toolset name="borland-5_6_4"/>
  1039. <toolset name="msvc"/>
  1040. <toolset name="vc7"/>
  1041. <note refid="2"/>
  1042. </mark-failure>
  1043. <mark-failure>
  1044. <toolset name="*"/>
  1045. <note author="D. Abrahams">
  1046. This failure is caused by a compiler bug.
  1047. <code>is_convertible&lt;T,U&gt;::value</code> may be true for unrelated
  1048. iterators <code>T</code> and <code>U</code>
  1049. (including many of the Boost specialized adaptors) which use
  1050. <code>enable_if_convertible</code> to restrict the applicability
  1051. of converting constructors, even when <code>T</code> is not
  1052. convertible to <code>U</code> because instantiating the
  1053. conversion will cause a compilation failure.
  1054. </note>
  1055. </mark-failure>
  1056. </test>
  1057. <test name="indirect_iter_member_types" corner-case="yes"/>
  1058. <mark-expected-failures>
  1059. <test name="indirect_iter_member_types"/>
  1060. <test name="pointee"/>
  1061. <toolset name="borland"/>
  1062. <toolset name="borland-5_6_4"/>
  1063. <note author="D. Abrahams">
  1064. This failure is caused by a compiler bug. The
  1065. compiler tends to drop const-ness and as a result
  1066. some indirect_iterators will have pointer and
  1067. reference members of <code>T*</code> and <code>T&amp;</code> that should
  1068. have been <code>T const*</code> and <code>T const&amp;</code>.
  1069. </note>
  1070. </mark-expected-failures>
  1071. <mark-expected-failures>
  1072. <test name="zip_iterator_test"/>
  1073. <toolset name="borland"/>
  1074. <toolset name="borland-5_6_4"/>
  1075. <note author="Aleksey Gurtovoy" date="19 Sep 2004" refid="26"/>
  1076. </mark-expected-failures>
  1077. </library>
  1078. <!-- math -->
  1079. <library name="math">
  1080. <test name="quaternion_mult_incl_test">
  1081. <mark-failure>
  1082. <toolset name="intel-win32"/>
  1083. <note author="B. Dawes" refid="3"/>
  1084. </mark-failure>
  1085. </test>
  1086. </library>
  1087. <!-- numeric/conversion -->
  1088. <library name="numeric/conversion">
  1089. <mark-unusable>
  1090. <toolset name="gcc-2.95.3-linux"/>
  1091. <toolset name="borland-5_6_4"/>
  1092. <note author="Aleksey Gurtovoy" refid="5"/>
  1093. </mark-unusable>
  1094. <mark-expected-failures>
  1095. <test name="udt_support_test"/>
  1096. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1097. <toolset name="intel-7.1-linux"/>
  1098. <toolset name="intel-7.1-stdlib-default-linux"/>
  1099. <toolset name="msvc"/>
  1100. <toolset name="msvc-stlport"/>
  1101. <note author="Aleksey Gurtovoy" refid="2"/>
  1102. </mark-expected-failures>
  1103. <mark-expected-failures>
  1104. <test name="converter_test"/>
  1105. <toolset name="msvc"/>
  1106. <toolset name="msvc-stlport"/>
  1107. <note author="Aleksey Gurtovoy" refid="2"/>
  1108. </mark-expected-failures>
  1109. <mark-expected-failures>
  1110. <test name="numeric_cast_test"/>
  1111. <toolset name="msvc"/>
  1112. <toolset name="msvc-stlport"/>
  1113. <note author="Aleksey Gurtovoy" refid="2"/>
  1114. </mark-expected-failures>
  1115. </library>
  1116. <!-- numeric/interval -->
  1117. <library name="numeric/interval">
  1118. <mark-unusable>
  1119. <toolset name="borland"/>
  1120. <toolset name="borland-5_6_4"/>
  1121. <toolset name="msvc"/>
  1122. <toolset name="msvc-stlport"/>
  1123. <toolset name="vc7"/>
  1124. </mark-unusable>
  1125. <test name="test_float">
  1126. <mark-failure>
  1127. <toolset name="borland-5_5_1"/>
  1128. <toolset name="iw-7_1-vc6"/>
  1129. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  1130. <note author="G. Melquiond">
  1131. This test ensures the inclusion property of interval
  1132. arithmetic is available for built-in floating-point types
  1133. <code>float</code> and <code>double</code>. If the test
  1134. fails, <code>interval&lt;float&gt;</code> and
  1135. <code>interval&lt;double&gt;</code> should not be used
  1136. on this compiler/platform since there will be no
  1137. numerical guarantee.
  1138. </note>
  1139. </mark-failure>
  1140. </test>
  1141. <mark-expected-failures>
  1142. <test name="cmp_exn"/>
  1143. <test name="cmp_set"/>
  1144. <test name="cmp_tribool"/>
  1145. <toolset name="gcc-2.95.3-linux"/>
  1146. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1147. <note author="Aleksey Gurtovoy" refid="2"/>
  1148. </mark-expected-failures>
  1149. <mark-expected-failures>
  1150. <test name="det"/>
  1151. <toolset name="cw-8_3*"/>
  1152. <note author="Aleksey Gurtovoy" refid="2"/>
  1153. </mark-expected-failures>
  1154. </library>
  1155. <!-- numeric/ublas -->
  1156. <library name="numeric/ublas">
  1157. <mark-unusable>
  1158. <toolset name="borland"/>
  1159. <toolset name="borland-5_6_4"/>
  1160. <note author="M.Stevens" refid="17"/>
  1161. </mark-unusable>
  1162. <mark-unusable>
  1163. <toolset name="cw-8_3"/>
  1164. <toolset name="msvc"/>
  1165. <toolset name="msvc-stlport"/>
  1166. <toolset name="vc7"/>
  1167. <toolset name="iw-7_1-vc6"/>
  1168. <toolset name="gcc-2.95.3-linux"/>
  1169. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1170. <note author="M.Stevens" refid="30"/>
  1171. </mark-unusable>
  1172. <test name="test2">
  1173. <mark-failure>
  1174. <toolset name="tru64cxx65-041"/>
  1175. <note author="M.Stevens" refid="6"/>
  1176. </mark-failure>
  1177. </test>
  1178. <test name="test3">
  1179. <mark-failure>
  1180. <toolset name="intel-win32-8_1"/>
  1181. <note author="S. Slapeta" refid="3"/>
  1182. </mark-failure>
  1183. </test>
  1184. <test name="test4">
  1185. <mark-failure>
  1186. <toolset name="intel-win32-8_1"/>
  1187. <note author="S. Slapeta" refid="3"/>
  1188. </mark-failure>
  1189. </test>
  1190. <test name="test5">
  1191. <mark-failure>
  1192. <toolset name="intel-win32-8_1"/>
  1193. <note author="S. Slapeta" refid="3"/>
  1194. </mark-failure>
  1195. </test>
  1196. <test name="test6">
  1197. <mark-failure>
  1198. <toolset name="intel-win32-8_1"/>
  1199. <note author="S. Slapeta" refid="3"/>
  1200. </mark-failure>
  1201. </test>
  1202. </library>
  1203. <!-- program_options -->
  1204. <library name="program_options">
  1205. <!-- Mark unusable toolsets -->
  1206. <mark-unusable>
  1207. <toolset name="gcc-2.95.3-linux"/>
  1208. <note>
  1209. The failure is caused by standard library deficiencies
  1210. -- it lacks the basic_string class template and
  1211. the &lt;locale&gt; header.
  1212. </note>
  1213. </mark-unusable>
  1214. <mark-unusable>
  1215. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1216. <note refid="2"/>
  1217. </mark-unusable>
  1218. <!-- Mark expected failures -->
  1219. <test name="unicode_test*">
  1220. <mark-failure>
  1221. <toolset name="iw-7_1-vc6"/>
  1222. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  1223. <toolset name="msvc"/>
  1224. <toolset name="msvc-stlport"/>
  1225. <note>The failures are caused by problems
  1226. with std::locale implementation</note>
  1227. </mark-failure>
  1228. </test>
  1229. <test name="options_description_test_dll">
  1230. <mark-failure>
  1231. <toolset name="msvc"/>
  1232. <toolset name="iw-7_1-vc6"/>
  1233. <note refid="23"/>
  1234. </mark-failure>
  1235. </test>
  1236. <test name="variable_map_test_dll">
  1237. <mark-failure>
  1238. <toolset name="iw-7_1-vc6"/>
  1239. <note refid="23"/>
  1240. </mark-failure>
  1241. </test>
  1242. <test name="*dll">
  1243. <mark-failure>
  1244. <toolset name="cw-8_3*"/>
  1245. <note refid="18"/>
  1246. </mark-failure>
  1247. </test>
  1248. <test name="*dll">
  1249. <mark-failure>
  1250. <toolset name="*como-4_3_3*"/>
  1251. <note refid="24"/>
  1252. </mark-failure>
  1253. </test>
  1254. <mark-expected-failures>
  1255. <test name="variable_map_test"/>
  1256. <test name="variable_map_test_dll"/>
  1257. <toolset name="msvc"/>
  1258. <toolset name="msvc-stlport"/>
  1259. <note>
  1260. The failures are caused by compiler bug: it's not possible to
  1261. explicitly pass template arguments to member template function. The
  1262. failure is serious and makes one of the primary interfaces
  1263. unusable.
  1264. </note>
  1265. </mark-expected-failures>
  1266. <mark-expected-failures>
  1267. <test name="options_description_test_dll"/>
  1268. <test name="parsers_test_dll"/>
  1269. <test name="variable_map_test_dll"/>
  1270. <toolset name="mingw-3*"/>
  1271. <note author="Aleksey Gurtovoy" refid="29"/>
  1272. </mark-expected-failures>
  1273. <mark-expected-failures>
  1274. <test name="unicode_test*"/>
  1275. <toolset name="mingw-3*"/>
  1276. <note refid="19"/>
  1277. </mark-expected-failures>
  1278. </library>
  1279. <!-- python -->
  1280. <library name="python">
  1281. <mark-unusable>
  1282. <toolset name="borland"/>
  1283. <toolset name="borland-5_5_1"/>
  1284. <toolset name="borland-5_6_4"/>
  1285. <note refid="2"/>
  1286. <note refid="17"/>
  1287. </mark-unusable>
  1288. <mark-expected-failures>
  1289. <test name="args"/>
  1290. <test name="auto_ptr"/>
  1291. <test name="builtin_convertors"/>
  1292. <test name="callbacks"/>
  1293. <test name="crossmod_exception"/>
  1294. <test name="data_members"/>
  1295. <test name="enum"/>
  1296. <test name="exception_translator"/>
  1297. <test name="extract"/>
  1298. <test name="implicit"/>
  1299. <test name="iterator"/>
  1300. <test name="list"/>
  1301. <test name="map_indexing_suite"/>
  1302. <test name="object"/>
  1303. <test name="opaque"/>
  1304. <test name="pickle2"/>
  1305. <test name="polymorphism"/>
  1306. <test name="polymorphism2"/>
  1307. <test name="shared_ptr"/>
  1308. <test name="slice"/>
  1309. <test name="test_pointer_adoption"/>
  1310. <test name="try"/>
  1311. <test name="vector_indexing_suite"/>
  1312. <test name="virtual_functions"/>
  1313. <toolset name="gcc-2.95.3-linux"/>
  1314. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1315. <note author="D. Abrahams">
  1316. The problems with GCC 2.x only occur when C++ exceptions are thrown and
  1317. the framework catches them, which happens quite often in the tests.
  1318. So technically GCC 2.x is usable if you're careful.
  1319. </note>
  1320. </mark-expected-failures>
  1321. <mark-expected-failures>
  1322. <test name="args"/>
  1323. <test name="auto_ptr"/>
  1324. <test name="back_reference"/>
  1325. <test name="ben_scott1"/>
  1326. <test name="bienstman1"/>
  1327. <test name="bienstman2"/>
  1328. <test name="bienstman3"/>
  1329. <test name="bienstman4"/>
  1330. <test name="bienstman5"/>
  1331. <test name="callbacks"/>
  1332. <test name="cltree"/>
  1333. <test name="const_argument"/>
  1334. <test name="crossmod_exception_a"/>
  1335. <test name="crossmod_exception_b"/>
  1336. <test name="data_members"/>
  1337. <test name="defaults"/>
  1338. <test name="dict"/>
  1339. <test name="docstring"/>
  1340. <test name="enum"/>
  1341. <test name="exception_translator"/>
  1342. <test name="extract"/>
  1343. <test name="implicit"/>
  1344. <test name="injected"/>
  1345. <test name="input_iterator"/>
  1346. <test name="int_map_indexing_suite"/>
  1347. <test name="iterator"/>
  1348. <test name="keywords"/>
  1349. <test name="list"/>
  1350. <test name="long"/>
  1351. <test name="m1"/>
  1352. <test name="m2"/>
  1353. <test name="map_indexing_suite"/>
  1354. <test name="minimal"/>
  1355. <test name="module_tail"/>
  1356. <test name="multi_arg_constructor"/>
  1357. <test name="nested"/>
  1358. <test name="object"/>
  1359. <test name="opaque"/>
  1360. <test name="operators"/>
  1361. <test name="pickle1"/>
  1362. <test name="pickle2"/>
  1363. <test name="pickle3"/>
  1364. <test name="pickle4"/>
  1365. <test name="polymorphism"/>
  1366. <test name="polymorphism2"/>
  1367. <test name="properties"/>
  1368. <test name="register_ptr"/>
  1369. <test name="return_arg"/>
  1370. <test name="shared_ptr"/>
  1371. <test name="slice"/>
  1372. <test name="staticmethod"/>
  1373. <test name="str"/>
  1374. <test name="test_builtin_converters"/>
  1375. <test name="test_pointer_adoption"/>
  1376. <test name="tuple"/>
  1377. <test name="vector_indexing_suite"/>
  1378. <test name="virtual_functions"/>
  1379. <toolset name="intel-7.1-linux"/>
  1380. <toolset name="intel-8.0-linux"/>
  1381. <note author="Aleksey Gurtovoy">
  1382. The library is <a href="http://article.gmane.org/gmane.comp.lib.boost.devel/110420">known to work</a>
  1383. in this configuration. The failures are due to configuration issues of
  1384. the particular testing environment these tests have been run in. The
  1385. regression runners and library developers are aware of the problem and
  1386. plan to fix it for the next release.
  1387. </note>
  1388. </mark-expected-failures>
  1389. <mark-expected-failures>
  1390. <test name="builtin_converters"/>
  1391. <test name="extract"/>
  1392. <test name="list"/>
  1393. <test name="operators"/>
  1394. <test name="pickle1"/>
  1395. <test name="pickle2"/>
  1396. <test name="pickle3"/>
  1397. <test name="pickle4"/>
  1398. <toolset name="gcc-3.4.2-linux"/>
  1399. <note author="Aleksey Gurtovoy">
  1400. The test is <a href="http://article.gmane.org/gmane.comp.lib.boost.devel/110671">known to work</a>
  1401. in this configuration. The failures are due to configuration issues of
  1402. the particular testing environment these tests have been run in.
  1403. </note>
  1404. </mark-expected-failures>
  1405. </library>
  1406. <!-- random -->
  1407. <library name="random">
  1408. <mark-unusable>
  1409. <toolset name="msvc"/>
  1410. <toolset name="vc7"/>
  1411. <note author="B. Dawes" refid="10"/>
  1412. </mark-unusable>
  1413. <test name="random*">
  1414. <mark-failure>
  1415. <toolset name="intel-win32-8_0"/>
  1416. <note author="S. Slapeta" refid="3"/>
  1417. </mark-failure>
  1418. </test>
  1419. <test name="random_test">
  1420. <mark-failure>
  1421. <toolset name="cw-8_3*"/>
  1422. <note author="B. Dawes" refid="3"/>
  1423. </mark-failure>
  1424. <mark-failure>
  1425. <toolset name="borland"/>
  1426. <toolset name="borland-5_6_4"/>
  1427. <note author="B. Dawes" refid="2"/>
  1428. </mark-failure>
  1429. </test>
  1430. </library>
  1431. <!-- range -->
  1432. <library name="range">
  1433. <mark-unusable>
  1434. <toolset name="gcc-2.95.3*"/>
  1435. <toolset name="mipspro"/>
  1436. <note author="Thorsten Ottosen"/>
  1437. </mark-unusable>
  1438. <mark-expected-failures>
  1439. <test name="array_test"/>
  1440. <toolset name="como-4_3_3*"/>
  1441. <toolset name="borland-5_6_4"/>
  1442. <toolset name="msvc"/>
  1443. <toolset name="msvc-stlport"/>
  1444. <toolset name="vc7"/>
  1445. <note refid="27" author="Thorsten Ottosen"/>
  1446. </mark-expected-failures>
  1447. <mark-expected-failures>
  1448. <test name="iterator_range"/>
  1449. <toolset name="cw-8_3*"/>
  1450. <toolset name="msvc-stlport"/>
  1451. <toolset name="vc7"/>
  1452. <toolset name="tru64cxx65"/>
  1453. <note author="Thorsten Ottosen">
  1454. For most compilers this is due to problems
  1455. with built-in arrays (notably char arrays) and operator==()
  1456. and operator!=() for iterator_range. Thus, not using built-in arrays
  1457. fixes the problem.
  1458. </note>
  1459. </mark-expected-failures>
  1460. <mark-expected-failures>
  1461. <test name="reversible_range_test"/>
  1462. <toolset name="vc7"/>
  1463. <toolset name="tru64cxx65"/>
  1464. <note author="Thorsten Ottosen">
  1465. This test probably fails because it uses built-in arrays. So do expect these
  1466. functions to work in normal code.
  1467. </note>
  1468. </mark-expected-failures>
  1469. <mark-expected-failures>
  1470. <test name="string_test"/>
  1471. <toolset name="vc7"/>
  1472. <toolset name="tru64cxx65"/>
  1473. <note author="Thorsten Ottosen">
  1474. The string functionality is expected to work if
  1475. the user employs std::string.
  1476. </note>
  1477. </mark-expected-failures>
  1478. <mark-expected-failures>
  1479. <test name="sub_range"/>
  1480. <toolset name="vc-8_0"/>
  1481. <toolset name="iw-7_1-vc6-stlp-4_5_3"/>
  1482. <toolset name="msvc-stlport"/>
  1483. <toolset name="vc7"/>
  1484. <toolset name="cw-8_3*"/>
  1485. <toolset name="tru64cxx65"/>
  1486. <note refid="6" author="Thorsten Ottosen">
  1487. For most compilers this is due to problems
  1488. with built-in arrays (notably char arrays) and operator==()
  1489. and operator!=() for iterator_range. Thus, not using built-in arrays
  1490. fixes the problem.
  1491. </note>
  1492. </mark-expected-failures>
  1493. </library>
  1494. <!-- regex -->
  1495. <library name="regex">
  1496. <test name="regex_token_iterator_eg_2">
  1497. <mark-failure>
  1498. <toolset name="msvc"/>
  1499. <note author="J. Maddock"/>
  1500. </mark-failure>
  1501. </test>
  1502. <test name="posix_api_check">
  1503. <mark-failure>
  1504. <toolset name="como-4_3_3-vc7*"/>
  1505. <note author="J. Maddock"/>
  1506. </mark-failure>
  1507. </test>
  1508. <test name="*_dll">
  1509. <mark-failure>
  1510. <toolset name="*como-4_3_3*"/>
  1511. <note author="J. Maddock"/>
  1512. </mark-failure>
  1513. </test>
  1514. <mark-expected-failures>
  1515. <test name="regex_regress*"/>
  1516. <test name="regex_wide_regress*"/>
  1517. <toolset name="vc-8_0"/>
  1518. <note author="Aleksey Gurtovoy" refid="6"/>
  1519. </mark-expected-failures>
  1520. </library>
  1521. <!-- signals -->
  1522. <library name="signals">
  1523. <test name="dead_slot_test">
  1524. <mark-failure>
  1525. <toolset name="*como-4_3_3*"/>
  1526. <note refid="3" author="D. Gregor"/>
  1527. </mark-failure>
  1528. </test>
  1529. <test name="signal_test">
  1530. <mark-failure>
  1531. <toolset name="cw-8_3*"/>
  1532. <note author="B. Dawes" refid="2"/>
  1533. </mark-failure>
  1534. <mark-failure>
  1535. <toolset name="borland"/>
  1536. <toolset name="borland-5_6_4"/>
  1537. <toolset name="msvc"/>
  1538. <toolset name="vc7"/>
  1539. <note author="B. Dawes" refid="3"/>
  1540. </mark-failure>
  1541. </test>
  1542. <test name="trackable_test">
  1543. <mark-failure>
  1544. <toolset name="*como-4_3_3*"/>
  1545. <note refid="3" author="D. Gregor"/>
  1546. </mark-failure>
  1547. </test>
  1548. </library>
  1549. <!-- static_assert -->
  1550. <library name="static_assert">
  1551. <test name="static_assert_test_fail_8">
  1552. <mark-failure>
  1553. <toolset name="cw-8_3*"/>
  1554. <note author="B. Dawes" refid="3"/>
  1555. </mark-failure>
  1556. </test>
  1557. </library>
  1558. <!-- test -->
  1559. <library name="test">
  1560. <mark-expected-failures>
  1561. <test name="custom_exception_test"/>
  1562. <toolset name="msvc*"/>
  1563. <note author="Gennadiy Rozental" refid="2"/>
  1564. </mark-expected-failures>
  1565. <mark-expected-failures>
  1566. <test name="errors_handling_test"/>
  1567. <toolset name="*como-4_3_3*"/>
  1568. <note author="B. Dawes" refid="3"/>
  1569. </mark-expected-failures>
  1570. <mark-expected-failures>
  1571. <test name="token_iterator_test"/>
  1572. <toolset name="msvc-stlport"/>
  1573. <note refid="3"/>
  1574. </mark-expected-failures>
  1575. <mark-expected-failures reason="?">
  1576. <test name="token_iterator_test"/>
  1577. <toolset name="iw-7_1-vc6"/>
  1578. <toolset name="msvc"/>
  1579. <toolset name="gcc-3.4.2-linux"/>
  1580. <note refid="29"/>
  1581. </mark-expected-failures>
  1582. <mark-expected-failures reason="?">
  1583. <test name="basic_cstring_test"/>
  1584. <toolset name="gcc-2.95.3-linux"/>
  1585. <note refid="29"/>
  1586. </mark-expected-failures>
  1587. </library>
  1588. <!-- thread -->
  1589. <library name="thread">
  1590. <mark-unusable>
  1591. <toolset name="*como-4_3_3*"/>
  1592. <note author="B. Dawes" refid="10"/>
  1593. </mark-unusable>
  1594. <test name="test_mutex">
  1595. <mark-failure>
  1596. <toolset name="vc7"/>
  1597. <note author="B. Dawes" refid="0"/>
  1598. <note author="B. Dawes" refid="6"/>
  1599. </mark-failure>
  1600. </test>
  1601. <test name="test_tss_lib">
  1602. <mark-failure>
  1603. <toolset name="mingw*"/>
  1604. <toolset name="borland-5_6_4"/>
  1605. <toolset name="cw-8_3*"/>
  1606. <toolset name="cw-9_3"/>
  1607. <toolset name="vc7"/>
  1608. <note author="Aleksey Gurtovoy" date="19 Sep 2004">
  1609. This functionality has not been implemented yet. The library
  1610. developers plan to implement it for the next release.
  1611. </note>
  1612. </mark-failure>
  1613. </test>
  1614. <mark-expected-failures>
  1615. <test name="*_lib"/>
  1616. <toolset name="intel-8.0-linux*"/>
  1617. <note author="Aleksey Gurtovoy">
  1618. This failure is caused by a conflict between the compiler
  1619. and the testing environment: the tests are run on a platform with
  1620. <i>too recent</i> version of glibc, which is not currently
  1621. supported by the compiler vendor (Intel).
  1622. If you are having the same problem and <i>really</i> want to make
  1623. things work, renaming <code>strol</code> symbol in the
  1624. compiler's static runtime library (<code>libcprts.a</code>) to
  1625. something else is known to resolve the issue.
  1626. </note>
  1627. </mark-expected-failures>
  1628. <mark-expected-failures>
  1629. <test name="test_barrier_lib"/>
  1630. <toolset name="vc-8_0"/>
  1631. <note author="Aleksey Gurtovoy" refid="6"/>
  1632. </mark-expected-failures>
  1633. <mark-expected-failures>
  1634. <test name="test_thread"/>
  1635. <toolset name="vc-7_1"/>
  1636. <note author="Aleksey Gurtovoy" refid="6"/>
  1637. </mark-expected-failures>
  1638. <mark-expected-failures reason="?">
  1639. <test name="*_lib"/>
  1640. <toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
  1641. <note author="Aleksey Gurtovoy" refid="29"/>
  1642. </mark-expected-failures>
  1643. </library>
  1644. <!-- tuple -->
  1645. <library name="tuple">
  1646. <test name="io_test">
  1647. <toolset name="intel-win32"/>
  1648. <note author="B. Dawes" refid="3"/>
  1649. </test>
  1650. </library>
  1651. <!-- type_traits -->
  1652. <library name="type_traits">
  1653. <mark-expected-failures>
  1654. <test name="function_traits_test"/>
  1655. <test name="remove_bounds_test"/>
  1656. <test name="remove_const_test"/>
  1657. <test name="remove_cv_test"/>
  1658. <test name="remove_pointer_test"/>
  1659. <test name="remove_reference_test"/>
  1660. <test name="remove_volatile_test"/>
  1661. <toolset name="msvc"/>
  1662. <toolset name="vc7"/>
  1663. <note author="Aleksey Gurtovoy">
  1664. This failure is caused by the lack of compiler support for class template
  1665. partial specialization. A limited subset of the tested functionality is
  1666. available on the compiler through a user-side workaround (see
  1667. <a href="http://www.boost.org/libs/type_traits/index.html#transformations">
  1668. http://www.boost.org/libs/type_traits/index.html#transformations</a> for
  1669. details).
  1670. </note>
  1671. </mark-expected-failures>
  1672. <test name="tricky_incomplete_type_test">
  1673. <mark-failure>
  1674. <toolset name="borland-5_6_4"/>
  1675. </mark-failure>
  1676. </test>
  1677. <test name="tricky_is_enum_test">
  1678. <mark-failure>
  1679. <toolset name="borland-5_6_4"/>
  1680. <toolset name="msvc"/>
  1681. <toolset name="msvc-stlport"/>
  1682. </mark-failure>
  1683. </test>
  1684. <test name="is_abstract_test">
  1685. <mark-failure>
  1686. <toolset name="borland-5_6_4"/>
  1687. <toolset name="cw-8_3*"/>
  1688. <toolset name="cw-9_3*"/>
  1689. <toolset name="msvc"/>
  1690. <toolset name="msvc-stlport"/>
  1691. <toolset name="vc7"/>
  1692. <toolset name="mingw-3_3*"/>
  1693. <toolset name="gcc-2*"/>
  1694. <toolset name="gcc-3.2*"/>
  1695. <toolset name="gcc-3.3*"/>
  1696. <note author="Aleksey Gurtovoy">
  1697. This functionality is available only on compilers that implement C++ Core Language
  1698. <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#337">Defect Report 337</a>.
  1699. </note>
  1700. </mark-failure>
  1701. </test>
  1702. </library>
  1703. <!-- utility/enable_if -->
  1704. <library name="utility/enable_if">
  1705. <mark-unusable>
  1706. <toolset name="borland"/>
  1707. <toolset name="borland-5_6_4"/>
  1708. <toolset name="cw-8_3*"/>
  1709. <toolset name="msvc"/>
  1710. <toolset name="msvc-stlport"/>
  1711. <toolset name="vc7"/>
  1712. <note refid="3"/>
  1713. </mark-unusable>
  1714. </library>
  1715. <!-- utility -->
  1716. <library name="utility">
  1717. <test name="fun_out_iter_example">
  1718. <mark-failure>
  1719. <toolset name="como-win32"/>
  1720. <note author="B. Dawes" refid="4"/>
  1721. </mark-failure>
  1722. </test>
  1723. <test name="result_of_test">
  1724. <mark-failure>
  1725. <toolset name="borland-5*"/>
  1726. <toolset name="cw-8_3*"/>
  1727. <toolset name="msvc"/>
  1728. <toolset name="msvc-stlport"/>
  1729. <toolset name="vc7"/>
  1730. <toolset name="gcc-2.95.3*"/>
  1731. <note refid="3" author="D. Gregor"/>
  1732. </mark-failure>
  1733. </test>
  1734. <mark-expected-failures>
  1735. <test name="value_init_test"/>
  1736. <toolset name="msvc*"/>
  1737. <toolset name="vc7"/>
  1738. <note author="Aleksey Gurtovoy">
  1739. This failure is caused by a compiler bug (default-constructed scalar
  1740. types are not zero-initialized) that has been fixed in the latest
  1741. versions of the compiler (VC 7.1 and greater).
  1742. </note>
  1743. </mark-expected-failures>
  1744. </library>
  1745. <!-- variant -->
  1746. <library name="variant">
  1747. <mark-unusable>
  1748. <toolset name="mipspro"/>
  1749. <note refid="2"/>
  1750. </mark-unusable>
  1751. <test name="recursive_variant_test">
  1752. <mark-failure>
  1753. <toolset name="como-win32"/>
  1754. <toolset name="msvc"/>
  1755. <toolset name="msvc-stlport"/>
  1756. <toolset name="vc7"/>
  1757. <note refid="3"/>
  1758. </mark-failure>
  1759. </test>
  1760. <mark-expected-failures>
  1761. <test name="recursive_variant_test"/>
  1762. <test name="variant_test1"/>
  1763. <test name="variant_test5"/>
  1764. <test name="variant_visit_test"/>
  1765. <toolset name="borland"/>
  1766. <toolset name="borland-5_6_4"/>
  1767. <note author="Aleksey Gurtovoy" refid="3"/>
  1768. </mark-expected-failures>
  1769. <test name="variant_reference_test">
  1770. <mark-failure>
  1771. <toolset name="cw-8_3*"/>
  1772. <toolset name="msvc"/>
  1773. <toolset name="msvc-stlport"/>
  1774. <toolset name="vc7"/>
  1775. <note refid="3"/>
  1776. </mark-failure>
  1777. <mark-failure>
  1778. <toolset name="intel-win32"/>
  1779. <toolset name="iw-7_1*"/>
  1780. <toolset name="intel-7.1*"/>
  1781. <note refid="2"/>
  1782. </mark-failure>
  1783. </test>
  1784. </library>
  1785. <!-- /////////////// Standard note definitions /////////////// -->
  1786. <note id="0">
  1787. This test fails only intermittently.
  1788. </note>
  1789. <note id="1">
  1790. The failure is caused by a problem in Boost code. The Boost developers is aware of
  1791. the problem and plan to fix it.
  1792. </note>
  1793. <note id="2">
  1794. The failure is caused by a compiler bug.
  1795. </note>
  1796. <note id="3">
  1797. The failure is caused by a compiler bug, which has been reported to the compiler
  1798. supplier (or is already known to them).
  1799. </note>
  1800. <note id="4">
  1801. The failure is caused by a standard library bug.
  1802. </note>
  1803. <note id="5">
  1804. The failure is caused by a standard library bug, which has been reported to the
  1805. standard library supplier (or is already known to them).
  1806. </note>
  1807. <note id="6">
  1808. The failure is probably caused by the test code, harness, or configuration. Thus
  1809. it may not affect users of the library.
  1810. </note>
  1811. <note id="9">
  1812. The failure is serious and likely to prevent all use of this Boost library with this compiler.
  1813. </note>
  1814. <note id="10">
  1815. The failure is serious and likely to prevent all use of this Boost library with this
  1816. compiler. The failure is caused by a compiler bug, which has been reported to the compiler
  1817. supplier (or is already known to them).
  1818. </note>
  1819. <note id="14">
  1820. The failure is caused by a platform API bug.
  1821. </note>
  1822. <note id="15">
  1823. The failure is caused by a platform API bug, which has been reported to the platform API
  1824. supplier (or is already known to them).
  1825. </note>
  1826. <note id="16">
  1827. The failure is not serious and will not affect most users. The library degrades gracefully.
  1828. </note>
  1829. <note id="17">
  1830. This compiler's bugs are not supported by the library.
  1831. </note>
  1832. <note id="18">
  1833. Locales missing or adequately supported by this compiler.
  1834. </note>
  1835. <note id="19">
  1836. Missing or inadequate wchar/wstring/wstream support for this compiler.
  1837. </note>
  1838. <note id="20">
  1839. No std iterator traits for this compiler.
  1840. </note>
  1841. <note id="21">
  1842. Library has limited input/output support due to compiler inadequacies.
  1843. </note>
  1844. <note id="22">
  1845. No high precision clock for this platform.
  1846. </note>
  1847. <note id="23">
  1848. A bug in standard library prevents passing std::set from DLL to
  1849. application. A fixed &lt;tree&gt; header is available from
  1850. http://www.dinkumware.com/vc_fixes.html.
  1851. </note>
  1852. <note id="24">
  1853. Although the documentation from the Comeau website would make it appear
  1854. that windows DLL's are supported using the --windows option, after some
  1855. experimentation we have been unsuccessful in making dll configurations
  1856. work correctly.
  1857. </note>
  1858. <note id="25">
  1859. The failure is caused by a runtime limitation. Locale support is only
  1860. available with the static linked variant of the runtime. Generally
  1861. the dynamic linked variant is required when building dynamic modules,
  1862. DLL, <code>so</code>, etc.
  1863. </note>
  1864. <note id="26">
  1865. This failure is caused by a compiler bug with no known workaround.
  1866. Patches are welcome!
  1867. </note>
  1868. <note id="27" >
  1869. This failure is caused by bugs in the standard library implementation and/or
  1870. bugs in the compiler.
  1871. </note>
  1872. <note id="28">
  1873. Unresearched failure, please contact library developers for more
  1874. information about possible causes.
  1875. </note>
  1876. <note id="29">
  1877. The test fails due to unresearched issues. The library
  1878. developers are aware of this failure, but need help with
  1879. investigating/addressing it for future releases.
  1880. </note>
  1881. <note id="30">
  1882. The support for this deficient compiler will be dropped staring
  1883. from Boost 1.33.0 release. Please use one of the previous Boost
  1884. releases if you need the library to work on this compiler.
  1885. </note>
  1886. </explicit-failures-markup>
粤ICP备19079148号