forked from boostorg/boost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
explicit-failures-markup.xml
7334 lines (6957 loc) · 289 KB
/
explicit-failures-markup.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<explicit-failures-markup xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="explicit-failures.xsd">
<!--
PLEASE VALIDATE THE XML BEFORE COMMITTING YOUR CHANGES!
Locally, the xmlint tool can be used:
xmllint <two-dashes>valid explicit-failures-markup.xml <two-dashes>schema explicit-failures.xsd
The following online services can be used to validate your changes to this
file:
- http://syseng.nist.gov/b2bTestbed/projects/xmlvalidation/instance_validation.html
- http://xmlvalidation.com/
With both tools 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.
-->
<!-- /////////////// Toolsets /////////////// -->
<mark-toolset name="acc" status="required"/>
<mark-toolset name="darwin-4.0.1" status="required"/>
<mark-toolset name="gcc-4.1.2_sunos_i86pc" status="required"/>
<mark-toolset name="gcc-4.1.3_linux" status="required"/>
<mark-toolset name="gcc-4.2.1" status="required"/>
<mark-toolset name="gcc-4.2.1_hpux_ia64" status="required"/>
<mark-toolset name="gcc-4.2.1_linux_x86_64" status="required"/>
<mark-toolset name="intel-linux-9.0" status="required"/>
<mark-toolset name="intel-vc8-win-10.0" status="required"/>
<mark-toolset name="intel-win-10.0" status="required"/>
<mark-toolset name="msvc-7.1" status="required"/>
<mark-toolset name="msvc-8.0" status="required"/>
<mark-toolset name="msvc-8.0_64" status="required"/>
<!-- /////////////// Libraries /////////////// -->
<!-- accumulators -->
<library name="accumulators">
<mark-unusable>
<toolset name="sun-5.7"/>
<toolset name="sun-5.8"/>
<toolset name="sun-5.9"/>
<toolset name="borland-*"/>
<toolset name="vacpp-*"/>
<toolset name="cray-*"/>
</mark-unusable>
<mark-expected-failures>
<test name="tail_variate_means"/>
<test name="weighted_tail_variate_means"/>
<toolset name="gcc-4.2.1*"/>
<note author="Boris Gubenko" refid="42"/>
</mark-expected-failures>
<mark-expected-failures>
<test name="weighted_kurtosis"/>
<toolset name="acc"/>
<note author="Boris Gubenko" refid="38"/>
</mark-expected-failures>
<mark-expected-failures>
<test name="weighted_tail_variate_means"/>
<toolset name="hp_cxx-71*"/>
<note author="Markus Schoepflin">
This failure is caused by a timeout when compiling the test. It
passes when the timeout value is increased.
</note>
</mark-expected-failures>
<mark-expected-failures>
<test name="covariance"/>
<test name="pot_quantile"/>
<test name="tail_variate_means"/>
<test name="weighted_covariance"/>
<test name="weighted_pot_quantile"/>
<test name="weighted_tail_variate_means"/>
<toolset name="acc"/>
<note author="Boris Gubenko" refid="47"/>
</mark-expected-failures>
<mark-expected-failures>
<test name="p_square_cumul_dist"/>
<test name="weighted_p_square_cumul_dist"/>
<toolset name="*"/>
<note author="Eric Niebler" refid="53"/>
</mark-expected-failures>
</library>
<!-- algorithm -->
<library name="algorithm">
<mark-expected-failures>
<test name="empty_search_test"/>
<test name="search_test1"/>
<test name="search_test2"/>
<test name="search_test3"/>
<test name="is_permutation_test1"/>
<toolset name="vacpp-10.1"/>
<note author="Marshall Clow">
These failures are caused by a lack of support/configuration for Boost.Tr1
</note>
</mark-expected-failures>
</library>
<!-- 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-5.5*"/>
<toolset name="msvc-6.5*"/>
<toolset name="msvc-7.1_stlport4"/>
<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="gcc-2.95.3-stlport-4.6.2-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>
<test name="regex">
<mark-failure>
<toolset name="borland-5.9*"/>
<toolset name="borland-5.8*"/>
<toolset name="borland-5.6*"/>
<note author="P.Droba">
The toolset is not supported by Boost.Regex.
</note>
</mark-failure>
</test>
</library>
<!-- any -->
<library name="any">
<test name="any_to_ref_test">
<mark-failure>
<toolset name="msvc-6.5*"/>
<note author="Vladimir Prus">
The test fail with ICE, but the exact reason for ICE is not
known. A minimal example of casting any to reference type
seem to work. Anyone interested in using this functionality
with msvc is suggested to do additional testing.
</note>
</mark-failure>
</test>
</library>
<!-- array -->
<library name="array">
<test name="array0">
<mark-failure>
<toolset name="msvc-6.5"/>
<toolset name="msvc-6.5_stlport4"/>
<toolset name="msvc-7.0"/>
<note author="A.Meredith">
Compilers need to support partial template specialization
to work with zero length arrays.
</note>
</mark-failure>
</test>
<test name="array3">
<mark-failure>
<toolset name="borland-5.5*"/>
<toolset name="borland-5.6*"/>
<toolset name="msvc-6.5"/>
<toolset name="msvc-6.5_stlport4"/>
<toolset name="msvc-7.0"/>
<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-5.5*"/>
<toolset name="borland-5.6*"/>
<toolset name="msvc-6.5"/>
<toolset name="msvc-6.5_stlport4"/>
<toolset name="msvc-7.0"/>
<note refid="3"/>
</mark-failure>
</test>
</library>
<!-- asio -->
<library name="asio">
<mark-unusable>
<toolset name="borland-5.6*"/>
<toolset name="borland-5.8*"/>
<note author="Chris Kohlhoff">
This compiler does not support enable_if, which is needed by the
Boost.System library on which Boost.Asio depends.
</note>
</mark-unusable>
<mark-expected-failures>
<test name="read_until"/>
<test name="read_until_select"/>
<toolset name="gcc-4.2.1_hpux_ia64"/>
<note author="Boris Gubenko">
On HP-UX 11.23 platform, these tests must be compiled with
_XOPEN_SOURCE_EXTENDED macro defined. It is likely related
to CR JAGag28813.
</note>
</mark-expected-failures>
</library>
<!-- assign -->
<library name="assign">
<mark-unusable>
<toolset name="dmc-8_43-stlport-4_5_3"/>
</mark-unusable>
<mark-expected-failures>
<test name="array"/>
<toolset name="msvc-6.5_stlport4"/>
<toolset name="msvc-7.0"/>
<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="msvc-7.0"/>
<toolset name="sunpro-5_3-sunos"/>
<toolset name="hp_cxx-65*"/>
<note refid="6" author="Thorsten Ottosen"/>
</mark-expected-failures>
<mark-expected-failures>
<test name="list_inserter"/>
<toolset name="gcc-2.95.3*"/>
<note author="Thorsten Ottosen">
This test could probably be made to work if somebody with knowledge
about the compilers would submit a patch.
</note>
</mark-expected-failures>
<mark-expected-failures>
<test name="list_of"/>
<toolset name="sunpro-5_3-sunos"/>
<toolset name="hp_cxx-65*"/>
<toolset name="borland-5*"/>
<toolset name="msvc-6.5*"/>
<toolset name="msvc-7.0"/>
<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="list_of_workaround"/>
<toolset name="sunpro-5_3-sunos"/>
<note author="Thorsten Ottosen" >
The test could probably be made to work if somebody submitted a patch.
</note>
</mark-expected-failures>
<mark-expected-failures>
<test name="multi_index_container"/>
<toolset name="sunpro-5_3-sunos"/>
<toolset name="sun-5.8"/>
<toolset name="hp_cxx-65*"/>
<toolset name="borland-5*"/>
<toolset name="gcc-2.95.3*"/>
<note refid="27" author="Thorsten Ottosen"/>
</mark-expected-failures>
<mark-expected-failures>
<test name="multi_index_container"/>
<toolset name="msvc-6.5*"/>
<toolset name="msvc-7.0"/>
<toolset name="mipspro"/>
<toolset name="hp_cxx-65*"/>
<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>
<mark-expected-failures>
<test name="ptr_list_inserter"/>
<toolset name="sunpro-5_3-sunos"/>
<toolset name="hp_cxx-65*"/>
<toolset name="borland-5*"/>
<toolset name="gcc-2.95.3*"/>
<toolset name="msvc-6.5*"/>
<toolset name="msvc-7.0"/>
<toolset name="mipspro"/>
<note author="Thorsten Ottosen" >
The test depends on Boost.Pointer Container which probably does not work for
this compiler.
</note>
</mark-expected-failures>
<mark-expected-failures>
<test name="ptr_list_of"/>
<toolset name="hp_cxx-65*"/>
<toolset name="borland-5*"/>
<toolset name="gcc-2.95.3*"/>
<toolset name="msvc-6.5*"/>
<toolset name="mipspro"/>
<note author="Thorsten Ottosen" >
The test depends on Boost.Pointer Container which probably does not work for
this compiler.
</note>
</mark-expected-failures>
<mark-expected-failures>
<test name="ptr_map_inserter"/>
<toolset name="hp_cxx-65*"/>
<toolset name="borland-5*"/>
<toolset name="gcc-2.95.3*"/>
<toolset name="msvc-6.5*"/>
<toolset name="mipspro"/>
<note author="Thorsten Ottosen" >
The test depends on Boost.Pointer Container which probably does not work for
this compiler.
</note>
</mark-expected-failures>
<mark-expected-failures>
<test name="std"/>
<toolset name="sunpro-5_3-sunos"/>
<note author="Thorsten Ottosen" >
The test does not work for
this compiler.
</note>
</mark-expected-failures>
<mark-expected-failures>
<test name="tuple_list_of"/>
<toolset name="sunpro-5_3-sunos"/>
<toolset name="borland-5*"/>
<toolset name="msvc-6.5*"/>
<toolset name="msvc-7.0"/>
<note author="Thorsten Ottosen" >
The test depends on Boost.Tuple which probably does not work for
this compiler.
</note>
</mark-expected-failures>
</library>
<!-- bimap -->
<library name="bimap">
<mark-unusable>
<toolset name="borland-5.6*"/>
<note author="J. López" date="05 Jul 2004" refid="17"/>
</mark-unusable>
<mark-unusable>
<toolset name="borland-5.8*"/>
<note author="Alisdair Meredith" date="26 May 2006"/>
</mark-unusable>
<mark-unusable>
<toolset name="borland-5.9*"/>
<note author="Alisdair Meredith" date="27 Feb 2007"/>
</mark-unusable>
<mark-unusable>
<toolset name="gcc-2.95.3-linux"/>
<toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
<toolset name="gcc-2.95.3-stlport-4.6.2-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"/>
<toolset name="sunpro-5_8u1-sunos"/>
<note author="J. López" date="22 Apr 2005" refid="17"/>
</mark-unusable>
<mark-unusable>
<toolset name="dmc-8_43-stlport-4_5_3"/>
<toolset name="dmc-8_44b-stlport-4_5_3"/>
<toolset name="dmc-8_47-stlport-4_5_3"/>
<note author="J. López" date="03 Jun 2005" refid="17"/>
</mark-unusable>
<mark-expected-failures>
<test name="test_bimap_assign"/>
<test name="test_bimap_ordered"/>
<test name="test_bimap_unconstrained"/>
<test name="test_bimap_unordered"/>
<toolset name="acc"/>
<note refid="38" author="Boris Gubenko"/>
</mark-expected-failures>
<mark-expected-failures>
<test name="typeof"/>
<toolset name="acc*"/>
<toolset name="intel-vc71-win*"/>
<toolset name="intel-vc8-win*"/>
<toolset name="intel-win-9.1"/>
<toolset name="hp_cxx*"/>
<note refid="39" author="Boris Gubenko"/>
</mark-expected-failures>
<mark-expected-failures>
<test name="test_bimap_serialization"/>
<toolset name="gcc-mingw-3.4.5"/>
<note author="Matias Capeletto">Compiler bug.</note>
</mark-expected-failures>
<mark-expected-failures>
<test name="test_bimap_property_map"/>
<toolset name="gcc-3.4.6_linux_x86_64"/>
<note author="Matias Capeletto">Time out.</note>
</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-6.*"/>
<toolset name="msvc-7.0"/>
<toolset name="cw-8.3"/>
<note refid="31" author="Peter Dimov"/>
</mark-expected-failures>
<mark-expected-failures>
<test name="bind_dm_test"/>
<toolset name="sunpro-5_3-sunos"/>
<note refid="31" author="Peter Dimov"/>
</mark-expected-failures>
<mark-expected-failures>
<test name="bind_function_test"/>
<toolset name="sunpro-5_8u1-sunos"/>
<note author="Peter Dimov">
This failure is caused by Boost.Function.
</note>
</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>
<mark-expected-failures>
<test name="bind_rv_sp_test"/>
<toolset name="hp_cxx-65*"/>
<toolset name="hp_cxx-71*"/>
<note author="Markus Schoepflin">
This failure is caused by a bug in the compiler triggered by the
use of the debug flag '-gall'. It has been reported to the
compiler vendor.
</note>
</mark-expected-failures>
<mark-expected-failures>
<test name="bind_dm3_test"/>
<toolset name="borland-5*"/>
<toolset name="msvc-6.*"/>
<toolset name="msvc-7.0"/>
<note refid="31" author="Peter Dimov"/>
</mark-expected-failures>
<mark-expected-failures>
<test name="mem_fn_eq_test"/>
<toolset name="msvc-7.1"/>
<note author="Peter Dimov">
This failure is only present in release mode and is caused by /OPT:ICF.
</note>
</mark-expected-failures>
<mark-expected-failures>
<test name="bind_placeholder_test"/>
<toolset name="borland-*"/>
<toolset name="msvc-6.*"/>
<toolset name="msvc-7.0"/>
<note refid="31" author="Peter Dimov"/>
</mark-expected-failures>
</library>
<!-- build -->
<library name="build">
<mark-expected-failures>
<test name="collect_debug_info"/>
<toolset name="*"/>
<note author="Jurko Gospodnetić">
Temporarily enabled and always failing test used for collecting
additional feedback from the testing site.
</note>
</mark-expected-failures>
</library>
<!-- chrono -->
<library name="chrono">
<mark-unusable>
<toolset name="borland-*"/>
<toolset name="vacpp-10*"/>
<note author="Vicente J. Botet Escriba">
The compiler does not support features that are essential for the library.
</note>
</mark-unusable>
<test name="*_h" category="Header Only">
</test>
<test name="*_l" category="Non Header Only">
</test>
<test name="*_s" category="Static Link">
</test>
<test name="*_d" category="Dynamic Link">
</test>
<test name="*_f" category="Compile Diagnostic Required">
</test>
</library>
<!-- circular_buffer -->
<library name="circular_buffer">
<mark-expected-failures>
<test name="base_test"/>
<test name="space_optimized_test"/>
<toolset name="acc"/>
<note author="Boris Gubenko" refid="41"/>
</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>
<test name="class_concept_fail_expected">
<mark-failure>
<toolset name="borland-5*"/>
<toolset name="msvc-6.5*"/>
<toolset name="msvc-7.0"/>
<note author="Jeremy Siek"/>
</mark-failure>
</test>
<test name="stl_concept_covering">
<mark-failure>
<toolset name="*"/>
<note author="Jeremy Siek" refid="1"/>
</mark-failure>
</test>
<test name="stl_concept_check">
<mark-failure>
<toolset name="hp_cxx*"/>
<note author="Markus Schoepflin" date="09 Dec 2007">
This version of the Rogue Wave library fails to provide all
needed addition operators for the iterator type and the
difference type of std::deque.
</note>
</mark-failure>
</test>
</library>
<!-- config -->
<library name="config">
<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="gcc-3_4_4_tru64"/>
<note author="John Maddock">
Long double NaN's are apparently handled incorrectly on this platform.
</note>
</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="limits_test">
<mark-failure>
<toolset name="borland-5.8*"/>
<note author="A.Meredith">
This failure is due to NaNs trapping.
</note>
</mark-failure>
</test>
<test name="limits_test">
<mark-failure>
<toolset name="borland-5.9*"/>
<note author="A.Meredith">
This failure is due to the compiler not recognising the long double special values for infinity and quiet NaN
</note>
</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>
<!-- container-->
<library name="container">
<mark-unusable>
<toolset name="borland-5.*"/>
<toolset name="sun-5.*"/>
<toolset name="msvc-6.5*"/>
<toolset name="cw-9.*"/>
<toolset name="gcc-2.95*"/>
<toolset name="gcc-3.0*"/>
<toolset name="gcc-3.1*"/>
<toolset name="gcc-3.2*"/>
<toolset name="gcc-3.3*"/>
<toolset name="mipspro"/>
<toolset name="intel-linux-8.*"/>
<note author="Ion Gaztañaga">
The compiler does not support features that are essential for the library.
</note>
</mark-unusable>
</library>
<!-- convert-->
<library name="convert">
<test name="convert_test_has_begin">
<mark-failure>
<toolset name="msvc-8.0*"/>
<toolset name="msvc-9.0*"/>
<toolset name="msvc-10.0*"/>
<toolset name="msvc-11.0*"/>
<note author="Vladimir Batov">
The relevant SFINAE support is broken in MSVC up to version 11.
</note>
</mark-failure>
</test>
</library>
<!-- lexical_cast -->
<library name="lexical_cast">
<test name="lexical_cast_test">
<mark-failure>
<toolset name="sunpro-5_3-sunos"/>
<note author="Douglas Gregor" refid="3"/>
</mark-failure>
</test>
<test name="lexical_cast_abstract_test">
<mark-failure>
<toolset name="borland-5.6*"/>
<toolset name="borland-5.8*"/>
<toolset name="borland-5.9*"/>
<note author="Alisdair Meredith">
This compiler does not support the is_abstract type trait
</note>
</mark-failure>
</test>
<test name="lexical_cast_loopback_test">
<mark-failure>
<toolset name="borland-5.6*"/>
<toolset name="borland-5.8*"/>
<toolset name="borland-5.9*"/>
<toolset name="intel-darwin-11.*"/>
<toolset name="intel-darwin-12.0"/>
<toolset name="gcc-3.4.0*"/>
<toolset name="gcc-4.1*"/>
<toolset name="gcc-4.2.0*"/>
<toolset name="gcc-mingw-3.4*"/>
<toolset name="gcc-mingw-4.*"/>
<toolset name="sun-5.7*"/>
<toolset name="sun-5.8*"/>
<toolset name="sun-5.9*"/>
<toolset name="sun-5.10*"/>
<toolset name="msvc-8.0*"/>
<toolset name="msvc-9.0*"/>
<toolset name="msvc-10.0*"/>
<toolset name="msvc-11.0*"/>
<toolset name="msvc-12.0*"/>
<toolset name="msvc-7.1*"/>
<toolset name="vacpp-10.1"/>
<toolset name="qcc-4*"/>
<toolset name="cray-8.0"/>
<toolset name="acc"/>
<note author="Alexander Nasonov">
Conversion double-string-double may give a different
value (or even throw) on many compilers
</note>
</mark-failure>
</test>
<test name="lexical_cast_float_types_test">
<mark-failure>
<toolset name="vacpp-*"/>
<toolset name="vacpp"/>
<toolset name="msvc-8.0"/>
<toolset name="msvc-9.0"/>
<toolset name="msvc-9.0~stlport5.2"/>
<toolset name="msvc-9.0~wm5~stlport5.2"/>
<toolset name="msvc-10.0"/>
<toolset name="intel-darwin-11.*"/>
<toolset name="intel-darwin-12.0"/>
<toolset name="qcc-4*"/>
<toolset name="clang-darwin-libcxx*"/>
<toolset name="msvc-9.0~wm5"/>
<note author="Antony Polukhin">
Some compilers and STL realizations convert double and long
double types with bigger precision loss than minimal (or
even round to infinity). Such failures are not a
lexical_cast, but a compiler fault.
</note>
</mark-failure>
</test>
</library>
<!-- coroutine -->
<library name="coroutine">
<mark-unusable>
<toolset name="cray-*"/>
<toolset name="darwin-4.4"/>
<toolset name="darwin-4.4*"/>
<toolset name="gcc-4.4"/>
<toolset name="gcc-4.4*"/>
<toolset name="gcc-mingw-4.4"/>
<toolset name="gcc-mingw-4.4*"/>
<toolset name="gcc-mingw-4.5"/>
<toolset name="gcc-mingw-4.5*"/>
<toolset name="gcc-mingw-4.6"/>
<toolset name="gcc-mingw-4.6*"/>
<toolset name="gcc-mingw-4.7"/>
<toolset name="gcc-mingw-4.7*"/>
<toolset name="msvc-8.0"/>
<toolset name="pgi-*"/>
<toolset name="vacpp-*"/>
</mark-unusable>
</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="como-4_3_3-vc7_1"/>
<toolset name="sunpro-5_3-sunos"/>
<toolset name="msvc-6.5"/>
<toolset name="msvc-6.5_stlport5"/>
<toolset name="msvc-6.5_stlport4"/>
<toolset name="msvc-7.0"/>
<toolset name="msvc-7.0_stlport5"/>
<toolset name="iw-7_1-vc6-stlp-4_5_3"/>
<toolset name="iw-7_1-vc6"/>
<toolset name="dmc-*"/>
</mark-unusable>
<test name="testgreg_serialize*">
<mark-failure>
<toolset name="gcc-2.*"/>
<toolset name="msvc-6.5*"/>
<note author="B. Garst">The serialization library does not support this compiler.
</note>
</mark-failure>
</test>
<test name="testgreg_serialize_xml">
<mark-failure>
<toolset name="msvc-7.0"/>
<note author="J. Garland">XML serialization is not supported on this compiler.
</note>
</mark-failure>
</test>
<test name="testtime_serialize*">
<mark-failure>
<toolset name="gcc-2.*"/>
<toolset name="msvc-6.5*"/>
<note author="B. Garst">The serialization library does not support this compiler.
</note>
</mark-failure>
</test>
<test name="testtime_serialize_xml*">
<mark-failure>
<toolset name="msvc-7.0"/>
<note author="J. Garland">XML serialization is not supported on 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-6.5*"/>
<toolset name="msvc-7.0*"/>
<toolset name="cw-8.3*"/>
<toolset name="borland-5.6*"/>
<toolset name="borland-5.8*"/>
<toolset name="borland-5.9*"/>
<toolset name="mingw*"/>
<toolset name="*mingw*"/>
<toolset name="*cygwin*"/>
<toolset name="gcc-2.95.3-linux"/>
<toolset name="gcc-3.1-darwin"/>
<toolset name="*como-4_3_3*"/>
<note author="B. Garst" refid="19,21"/>
</mark-failure>
</test>
<test name="testdate_input_facet*">
<mark-failure>
<toolset name="cw-9.4"/>
<toolset name="cw-9.5*"/>
<note author="J. Garland">
For some reason Code Warrior has difficulty compiling some of the
input code. This may be related to limitations of locale handling,
but it's unclear at this time (2005-May-21).
</note>
</mark-failure>
</test>
<test name="testlocal_time_facet">
<mark-failure>
<toolset name="borland-5.6*"/>
<toolset name="borland-5.8*"/>
<toolset name="borland-5.9*"/>
<toolset name="*como-4_3_3*"/>
<toolset name="gcc-2.95.3-linux"/>
<toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
<toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
<toolset name="msvc-6.5"/>
<toolset name="msvc-7.0"/>
<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-6.5"/>
<toolset name="*como-4_3_3*"/>
<toolset name="borland-5.6*"/>
<toolset name="borland-5.8*"/>
<toolset name="borland-5.9*"/>
<toolset name="gcc-2.95.3-linux"/>
<toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
<toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
<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_iterator">
<mark-failure>
<toolset name="msvc-6.5"/>
<toolset name="*como-4_3_3*"/>
<toolset name="borland-5.6*"/>
<toolset name="borland-5.8*"/>
<toolset name="borland-5.9*"/>
<toolset name="gcc-2.95.3-linux"/>
<toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
<toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
<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_period">
<mark-failure>
<toolset name="msvc-6.5"/>
<toolset name="*como-4_3_3*"/>
<toolset name="borland-5.6*"/>
<toolset name="borland-5.8*"/>
<toolset name="borland-5.9*"/>
<toolset name="gcc-2.95.3-linux"/>
<toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
<toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
<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="*como-4_3_3*"/>
<toolset name="borland-5.6*"/>
<toolset name="borland-5.8*"/>
<toolset name="borland-5.9*"/>
<toolset name="gcc-2.95.3-linux"/>
<toolset name="msvc-7.0"/>
<toolset name="msvc-6.5"/>
<note author="J. Garland">
Some 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="borland-5.6*"/>
<toolset name="borland-5.8*"/>
<toolset name="borland-5.9*"/>
<toolset name="*como-4_3_3*"/>
<toolset name="cw-8.3*"/>
<toolset name="gcc-2.95.3-linux"/>
<toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
<toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
<toolset name="msvc-6.5"/>
<toolset name="msvc-7.0"/>
<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_input_facet">
<mark-failure>
<toolset name="borland-5.6*"/>
<toolset name="borland-5.8*"/>
<toolset name="borland-5.9*"/>
<toolset name="*como-4_3_3*"/>
<toolset name="cw-8.3*"/>
<toolset name="gcc-2.95.3-linux"/>
<toolset name="gcc-2.95.3-stlport-4.5.3-linux"/>
<toolset name="gcc-2.95.3-stlport-4.6.2-linux"/>
<toolset name="msvc-6.5"/>