forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCPythonCasesManifest.ini
More file actions
1202 lines (856 loc) · 26.2 KB
/
CPythonCasesManifest.ini
File metadata and controls
1202 lines (856 loc) · 26.2 KB
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
[DEFAULT]
Ignore=false
WorkingDirectory=$(TEST_FILE_DIR)
Redirect=false
Timeout=120000 # 2 minute timeout
[CPython.ctypes]
RunCondition=NOT $(IS_OSX) # TODO: debug
[CPython.ctypes.test_as_parameter]
Ignore=true
[CPython.ctypes.test_bitfields] # IronPython.modules.type_related.test_bitfields_ctypes_stdlib
Ignore=true
[CPython.ctypes.test_cast]
RunCondition=NOT $(IS_POSIX) # https://github.com/IronLanguages/ironpython3/issues/1455
[CPython.ctypes.test_errno]
Ignore=true
Reason=Current implementation of get_last_error needs to be debugged
[CPython.ctypes.test_functions]
Ignore=true
[CPython.ctypes.test_objects]
Ignore=true
Reason=CPython implementation detail
[CPython.ctypes.test_parameters]
Ignore=true
Reason=https://github.com/IronLanguages/ironpython2/issues/401
[CPython.ctypes.test_pickling]
Ignore=true
Reason=https://github.com/IronLanguages/ironpython2/issues/403
[CPython.ctypes.test_pointers]
Ignore=true
[CPython.ctypes.test_prototypes]
Ignore=true
Reason=https://github.com/IronLanguages/ironpython2/issues/404
[CPython.ctypes.test_python_api]
Ignore=true
Reason=This is CPython specific
[CPython.ctypes.test_random_things]
Ignore=true # https://github.com/IronLanguages/ironpython3/issues/1300
[CPython.ctypes.test_returnfuncptrs]
Ignore=true
[CPython.ctypes.test_slicing]
Ignore=true # https://github.com/IronLanguages/ironpython3/issues/1299
[CPython.ctypes.test_structures] # IronPython.test_structures_ctypes_stdlib
Ignore=true
[CPython.ctypes.test_unicode]
Ignore=true
Reason=https://github.com/IronLanguages/ironpython2/issues/405
[CPython.ctypes.test_win32]
Ignore=true
[CPython.distutils]
RunCondition=NOT $(IS_POSIX) # TODO: debug
[CPython.distutils.test_archive_util]
Ignore=true
[CPython.distutils.test_bdist]
Ignore=true
[CPython.distutils.test_bdist_msi]
Ignore=true
[CPython.distutils.test_build_ext]
Ignore=true
[CPython.distutils.test_build_py]
Ignore=true
[CPython.distutils.test_file_util]
Ignore=true
[CPython.distutils.test_filelist]
NotParallelSafe=true
[CPython.distutils.test_install_lib]
Ignore=true
[CPython.distutils.test_msvccompiler] # new in 3.5
Ignore=true
[CPython.distutils.test_sdist]
Ignore=true
[CPython.distutils.test_sysconfig]
Ignore=true
[CPython.test___all__]
Ignore=true
Reason=StackOverflowException - https://github.com/IronLanguages/ironpython2/issues/182
[CPython.test__locale]
Ignore=true
[CPython.test__osx_support]
RunCondition=$(IS_OSX)
Ignore=true
[CPython.test_abc] # IronPython.test_abc_stdlib
Ignore=true
[CPython.test_aifc] # Module will be removed in 3.13 - https://github.com/IronLanguages/ironpython3/issues/1352
Ignore=true
Reason=ImportError: No module named audioop
[CPython.test_asdl_parser] # new in 3.5
Ignore=true
Reason=unittest.case.SkipTest: test irrelevant for an installed Python
[CPython.test_array] # IronPython.test_array_stdlib
Ignore=true
[CPython.test_ast]
Ignore=true
[CPython.test_asyncgen] # new in 3.6 - https://github.com/IronLanguages/ironpython3/issues/107
Ignore=true
[CPython.test_asynchat] # Module will be removed in 3.12 - https://github.com/IronLanguages/ironpython3/issues/1352
RunCondition=NOT $(IS_OSX) # TODO: debug
[CPython.test_asyncio.test_base_events]
Ignore=true
[CPython.test_asyncio.test_events]
Ignore=true
[CPython.test_asyncio.test_futures]
Ignore=true
[CPython.test_asyncio.test_locks]
Ignore=true
[CPython.test_asyncio.test_pep492] # https://github.com/IronLanguages/ironpython3/issues/98
Ignore=true
[CPython.test_asyncio.test_sslproto]
Ignore=true
[CPython.test_asyncio.test_streams]
Ignore=true
[CPython.test_asyncio.test_subprocess]
Ignore=true
[CPython.test_asyncio.test_tasks]
Ignore=true
[CPython.test_asyncio.test_unix_events]
Ignore=true
[CPython.test_asyncio.test_windows_events]
Ignore=true
[CPython.test_asyncio.test_windows_utils]
Ignore=true
[CPython.test_asyncore] # Module will be removed in 3.12 - https://github.com/IronLanguages/ironpython3/issues/1352
Ignore=true
[CPython.test_atexit]
Ignore=true
[CPython.test_audioop] # Module will be removed in 3.13 - https://github.com/IronLanguages/ironpython3/issues/1352
Ignore=true
Reason=ImportError: No module named audioop
[CPython.test_base64] # IronPython.test_base64_stdlib
Ignore=true
[CPython.test_bdb] # new in 3.6
Ignore=true
[CPython.test_bigmem]
Ignore=true
[CPython.test_binhex]
Ignore=true # blocked by https://github.com/IronLanguages/ironpython3/issues/673
[CPython.test_builtin] # IronPython.test_builtin_stdlib
Ignore=true
[CPython.test_bufio]
RetryCount=2
[CPython.test_bytes]
Arguments=-bb "$(TEST_FILE)"
IsolationLevel=PROCESS # required for Arguments to have effect
[CPython.test_bz2] # IronPython.test_bz2_stdlib
Ignore=true
[CPython.test_calendar]
RunCondition=$(IS_DEBUG) # https://github.com/IronLanguages/ironpython3/issues/1067
Timeout=600000 # 10 minute timeout
[CPython.test_call] # IronPython.test_call_stdlib
Ignore=true
[CPython.test_capi]
Ignore=true
Reason=ImportError: No module named _testcapi
[CPython.test_cgi] # Module will be removed in 3.13 - https://github.com/IronLanguages/ironpython3/issues/1352
RunCondition=NOT $(IS_MONO)
Reason=SystemError: The stream does not support seeking
[CPython.test_cgitb] # Module will be removed in 3.13 - https://github.com/IronLanguages/ironpython3/issues/1352
Ignore=true
[CPython.test_class] # IronPython.test_class_stdlib
IsolationLevel=ENGINE
MaxRecursion=100
Ignore=true
[CPython.test_cmath]
Ignore=true
[CPython.test_cmd_line]
Ignore=true
[CPython.test_cmd_line_script]
Ignore=true
[CPython.test_code]
Ignore=true
[CPython.test_code_module] # IronPython.test_code_module_stdlib
Ignore=true
[CPython.test_codeccallbacks] # IronPython.test_codeccallbacks_stdlib
Ignore=true
[CPython.test_codecencodings_cn]
Ignore=true
Reason=LookupError: unknown encoding
[CPython.test_codecencodings_hk]
Ignore=true
Reason=LookupError: unknown encoding
[CPython.test_codecencodings_iso2022]
Ignore=true
Reason=LookupError: unknown encoding
[CPython.test_codecencodings_jp]
Ignore=true
Reason=LookupError: unknown encoding
[CPython.test_codecencodings_kr]
Ignore=true
Reason=LookupError: unknown encoding
[CPython.test_codecencodings_tw]
Ignore=true
Reason=LookupError: unknown encoding
[CPython.test_codecmaps_cn]
Ignore=true
Reason=LookupError: unknown encoding
[CPython.test_codecmaps_hk]
Ignore=true
Reason=LookupError: unknown encoding
[CPython.test_codecmaps_jp]
Ignore=true
Reason=LookupError: unknown encoding
[CPython.test_codecmaps_kr]
Ignore=true
Reason=LookupError: unknown encoding
[CPython.test_codecmaps_tw]
Ignore=true
Reason=LookupError: unknown encoding
[CPython.test_codecs] # IronPython.test_codecs_stdlib
Ignore=true
[CPython.test_codeop]
Ignore=true
[CPython.test_compile]
Ignore=true
Reason=StackOverflowException
[CPython.test_compileall]
Ignore=true
Reason=AttributeError: 'module' object has no attribute 'symlink'
[CPython.test_complex] # IronPython.test_complex_stdlib
Ignore=true
[CPython.test_concurrent_futures]
Ignore=true
Reason=ImportError: Cannot import name SemLock
[CPython.test_contextlib]
Ignore=true
Reason=Hangs
[CPython.test_copy]
IsolationLevel=ENGINE
MaxRecursion=100
Ignore=true
[CPython.test_coroutines] # new in 3.5
Ignore=true # blocked by https://github.com/IronLanguages/ironpython3/issues/98
[CPython.test_cprofile]
Ignore=true
Reason=ImportError: No module named _lsprof
[CPython.test_crypt] # Module will be removed in 3.13 - https://github.com/IronLanguages/ironpython3/issues/1352
Ignore=true
Reason=ImportError: No module named _crypt
[CPython.test_ctypes]
Ignore=true
Reason=Covered by individual test cases - CPython.ctypes.test
[CPython.test_curses]
RunCondition=$(IS_POSIX)
Ignore=true
Reason=unittest.case.SkipTest: No module named _curses
[CPython.test_datetime] # IronPython.test_datetime_stdlib
Ignore=true
[CPython.test_dbm_dumb]
RunCondition=NOT $(IS_POSIX) # TODO: debug
[CPython.test_dbm_gnu]
Ignore=true
Reason=ImportError: No module named _gdbm
[CPython.test_dbm_ndbm]
Ignore=true
Reason=ImportError: No module named _dbm
[CPython.test_decimal]
Ignore=true
[CPython.test_deque]
IsolationLevel=PROCESS # https://github.com/IronLanguages/ironpython3/issues/489
RunCondition=NOT $(IS_MONO) # https://github.com/IronLanguages/ironpython3/issues/544
[CPython.test_descr] # IronPython.test_descr_stdlib
IsolationLevel=ENGINE
MaxRecursion=100
Ignore=true
Reason=StackOverflowException
[CPython.test_devpoll]
Ignore=true
Reason=unittest.case.SkipTest: test works only on Solaris OS family
[CPython.test_dict] # IronPython.test_dict_stdlib
Ignore=true
[CPython.test_dict_version] # new in 3.6
Ignore=true
[CPython.test_dictviews]
IsolationLevel=ENGINE
MaxRecursion=100
[CPython.test_difflib]
IsolationLevel=ENGINE
MaxRecursion=100
[CPython.test_dis]
Ignore=true
Reason=IndexError: index out of range: 1
[CPython.test_distutils]
Ignore=true
Reason=Covered by individual test cases - CPython.distutils.tests
[CPython.test_doctest]
Ignore=true
[CPython.test_docxmlrpc]
Ignore=true
Reason=StackOverflowException
[CPython.test_dtrace] # new in 3.6
Ignore=true
[CPython.test_dynamic]
IsolationLevel=PROCESS # https://github.com/IronLanguages/ironpython3/issues/489
[CPython.test_dynamicclassattribute]
Ignore=true
Reason=AssertionError: AttributeError not raised
[CPython.test_email.test_contentmanager]
Ignore=true
[CPython.test_email.test_email]
Ignore=true
[CPython.test_email.test_generator]
Ignore=true
[CPython.test_email.test_headerregistry]
Ignore=true # blocked by https://github.com/IronLanguages/ironpython3/issues/1121
[CPython.test_email.test_utils]
Ignore=true # blocked by https://github.com/IronLanguages/ironpython3/issues/1121 and https://github.com/IronLanguages/ironpython3/issues/1136
[CPython.test_ensurepip]
Ignore=true
[CPython.test_enum]
Ignore=true
[CPython.test_epoll]
Ignore=true
Reason=unittest.case.SkipTest: test works only on Linux 2.6
[CPython.test_exception_hierarchy] # used to be test_pep3151
Ignore=true
[CPython.test_exceptions]
Ignore=true
Reason=StackOverflowException
[CPython.test_extcall]
Ignore=true
[CPython.test_faulthandler]
Ignore=true
[CPython.test_fcntl]
RunCondition=$(IS_POSIX)
Ignore=true
Reason=ImportError: No module named fcntl
[CPython.test_file]
IsolationLevel=PROCESS # https://github.com/IronLanguages/ironpython3/issues/489
[CPython.test_file_eintr]
RunCondition=NOT $(IS_POSIX) # TODO: debug
[CPython.test_filecmp]
NotParallelSafe=true # Creates/deletes a directory with a static name 'dir' in $TEMP
[CPython.test_fileinput] # IronPython.test_fileinput_stdlib
Ignore=true
[CPython.test_fileio]
Ignore=true
[CPython.test_finalization]
Ignore=true
[CPython.test_float] # IronPython.test_float_stdlib
Ignore=true
[CPython.test_flufl]
Ignore=true
[CPython.test_fork1]
Ignore=true
Reason=unittest.case.SkipTest: object <module 'os'> has no attribute 'fork'
[CPython.test_format]
RunCondition=NOT $(IS_NETCOREAPP21) OR NOT $(IS_LINUX) # https://github.com/IronLanguages/ironpython3/issues/751
[CPython.test_frame]
Ignore=true
[CPython.test_ftplib]
Ignore=true
Reason=Blocking
[CPython.test_funcattrs]
Ignore=true
[CPython.test_functools] # IronPython.test_functools_stdlib
Ignore=true
[CPython.test_future]
Ignore=true
[CPython.test_gc]
Ignore=true
[CPython.test_gdb]
Ignore=true
Reason=unittest.case.SkipTest: Couldnt find gdb on the path
[CPython.test_generators]
Ignore=true
[CPython.test_genericpath]
IsolationLevel=PROCESS # TODO: figure out
[CPython.test_genexps]
Ignore=true
[CPython.test_getargs2]
Ignore=true
Reason=ImportError: No module named '_testcapi'
[CPython.test_gettext]
NotParallelSafe=true # Creates/deletes a directory with static name 'xx'
[CPython.test_glob]
RunCondition=NOT $(IS_POSIX) # TODO: figure out
[CPython.test_grammar] # IronPython.test_grammar_stdlib
Ignore=true
[CPython.test_grp]
RunCondition=$(IS_POSIX)
Reason=Only valid for Unix
[CPython.test_gzip]
IsolationLevel=PROCESS # https://github.com/IronLanguages/ironpython3/issues/1440
[CPython.test_heapq]
Ignore=true
[CPython.test_httplib] # IronPython.test_httplib_stdlib
Ignore=true
Reason=Blocking
[CPython.test_httpservers]
Ignore=true
Reason=Blocking
[CPython.test_idle]
Ignore=true
Reason=unittest.case.SkipTest: No module named '_tkinter'
[CPython.test_imaplib]
Ignore=true
Reason=Blocking
[CPython.test_imp]
RunCondition=NOT $(IS_LINUX) # TODO: debug
NotParallelSafe=true # Creates/deletes a module with a static name 'test_imp_helper'
[CPython.test_import]
Ignore=true
Reason=ImportError: No module named _multiprocessing
[CPython.test_importlib]
Ignore=true
[CPython.test_inspect]
Ignore=true
Reason=ImportError: No module named _multiprocessing
[CPython.test_io]
Ignore=true
Reason=StackOverflowException
[CPython.test_ioctl]
RunCondition=$(IS_POSIX)
Ignore=true
Reason=unittest.case.SkipTest: No module named 'fcntl'
[CPython.test_ipaddress]
Ignore=true
Reason=ipaddress.AddressValueError: Expected 4 octets in '4294967295'
[CPython.test_isinstance]
IsolationLevel=ENGINE
MaxRecursion=100
[CPython.test_itertools] # IronPython.test_itertools_stdlib
Ignore=true
[CPython.test_json.test_enum]
Ignore=true
[CPython.test_keyword]
NotParallelSafe=true
[CPython.test_keywordonlyarg]
Ignore=true
[CPython.test_kqueue]
Ignore=true
Reason=unittest.case.SkipTest: test works only on BSD
[CPython.test_largefile]
Ignore=true
[CPython.test_lib2to3]
Ignore=true
[CPython.test_linecache]
Ignore=true # blocked by https://github.com/IronLanguages/ironpython3/issues/1245 - using the test_linecache_stdlib approach makes the issue disappear...
[CPython.test_list]
IsolationLevel=ENGINE
MaxRecursion=100
[CPython.test_locale]
Ignore=true
[CPython.test_logging]
Ignore=true
Reason=StackOverflowException - https://github.com/IronLanguages/ironpython2/issues/182
[CPython.test_long] # IronPython.test_long_stdlib
Ignore=true
[CPython.test_lzma]
Ignore=true
Reason=ImportError: No module named _lzma
[CPython.test_macpath]
RunCondition=NOT $(IS_MONO) # https://github.com/IronLanguages/ironpython3/issues/1102
IsolationLevel=PROCESS # https://github.com/IronLanguages/ironpython3/issues/1440
[CPython.test_mailbox]
Ignore=true
[CPython.test_mailcap]
RunCondition=NOT $(IS_LINUX) # TODO: debug
[CPython.test_marshal]
Ignore=true
[CPython.test_memoryio] # IronPython.test_memoryio_stdlib
Ignore=true
[CPython.test_memoryview]
RunCondition=NOT $(IS_MONO) # weakref failures; https://github.com/IronLanguages/ironpython3/issues/544
IsolationLevel=PROCESS # Also weakref failures; https://github.com/IronLanguages/ironpython3/issues/489
[CPython.test_metaclass]
Ignore=true
[CPython.test_minidom] # IronPython.test_minidom_stdlib
Ignore=true
[CPython.test_mmap]
RunCondition=NOT $(IS_POSIX)
IsolationLevel=PROCESS
[CPython.test_module]
Ignore=true
[CPython.test_modulefinder]
Ignore=true
[CPython.test_msilib] # Module will be removed in 3.13 - https://github.com/IronLanguages/ironpython3/issues/1352
Ignore=true
Reason=ImportError: No module named _msi
[CPython.test_multibytecodec]
Ignore=true
Reason=ImportError: No module named _multibytecodec
[CPython.test_multiprocessing_fork]
Ignore=true
Reason=ImportError: No module named _multiprocessing
[CPython.test_multiprocessing_forkserver]
Ignore=true
Reason=ImportError: No module named _multiprocessing
[CPython.test_multiprocessing_main_handling]
Ignore=true
Reason=ImportError: No module named _multiprocessing
[CPython.test_multiprocessing_spawn]
Ignore=true
Reason=ImportError: No module named _multiprocessing
[CPython.test_nis] # Module will be removed in 3.13 - https://github.com/IronLanguages/ironpython3/issues/1352
RunCondition=$(IS_POSIX)
Ignore=true
Reason=unittest.case.SkipTest: No module named 'nis'
[CPython.test_nntplib] # Module will be removed in 3.13 - https://github.com/IronLanguages/ironpython3/issues/1352
Ignore=true # currently failing during CI
RunCondition=NOT $(IS_NETCOREAPP) # https://github.com/IronLanguages/ironpython3/issues/1058
[CPython.test_normalization]
Ignore=true
[CPython.test_ntpath]
RunCondition=$(IS_WINDOWS) # TODO: failing on posix
IsolationLevel=PROCESS # Manipulates environment variables
[CPython.test_opcodes] # IronPython.test_opcodes_stdlib
Ignore=true
[CPython.test_openpty]
RunCondition=$(IS_POSIX)
Ignore=true
Reason=unittest.case.SkipTest: os.openpty() not available.
[CPython.test_ordered_dict] # IronPython.test_ordered_dict_stdlib
Ignore=true
[CPython.test_os]
Ignore=true
[CPython.test_ossaudiodev] # Module will be removed in 3.13 - https://github.com/IronLanguages/ironpython3/issues/1352
Ignore=true
Reason=unittest.case.SkipTest: No module named 'ossaudiodev'
[CPython.test_parser]
Ignore=true
Reason=ImportError: No module named parser
[CPython.test_pathlib]
Ignore=true
Reason=AttributeError: 'module' object has no attribute 'symlink'
[CPython.test_pdb]
Ignore=true
Reason=Blocking
[CPython.test_peepholer]
Ignore=true
[CPython.test_pickle]
Ignore=true
Reason=StackOverflowException
[CPython.test_pickletools]
Ignore=true
Reason=StackOverflowException
[CPython.test_pipes] # Module will be removed in 3.13 - https://github.com/IronLanguages/ironpython3/issues/1352
RunCondition=$(IS_POSIX)
Ignore=true
Reason=unittest.case.SkipTest: pipes module only works on posix
[CPython.test_pkg]
Ignore=true
[CPython.test_pkgutil]
Ignore=true
[CPython.test_platform]
Ignore=true
Reason=AttributeError: 'module' object has no attribute '_mercurial'
[CPython.test_plistlib] # IronPython.test_plistlib_stdlib
Ignore=true
[CPython.test_poll]
RunCondition=$(IS_POSIX)
Ignore=true
Reason=unittest.case.SkipTest: select.poll not defined
[CPython.test_poplib]
Ignore=true
Reason=Blocking
[CPython.test_posix]
RunCondition=$(IS_POSIX)
Ignore=true
Reason=unittest.case.SkipTest: No module named 'posix'
[CPython.test_posixpath]
Ignore=true
[CPython.test_print] # IronPython.test_print_stdlib
Ignore=true
[CPython.test_profile]
Ignore=true
[CPython.test_pty]
RunCondition=$(IS_POSIX)
Ignore=true
Reason=unittest.case.SkipTest: No module named 'fcntl'
[CPython.test_pulldom]
Ignore=true
[CPython.test_pwd]
RunCondition=$(IS_POSIX)
Reason=Only valid for Unix
[CPython.test_py_compile]
Ignore=true
Reason=NotImplementedError: sys.implementation.cache_tag is None
[CPython.test_pyclbr]
Ignore=true
[CPython.test_pydoc]
Ignore=true
[CPython.test_pyexpat]
Ignore=true
[CPython.test_raise]
Ignore=true
[CPython.test_random]
Ignore=true
[CPython.test_re] # IronPython.test_re_stdlib
Ignore=true
Reason=ImportError: Cannot import name Scanner
[CPython.test_readline]
RunCondition=$(IS_POSIX)
Ignore=true
Reason=unittest.case.SkipTest: No module named 'readline'
[CPython.test_regrtest]
IsolationLevel=PROCESS
Ignore=true # lots of failures
[CPython.test_reprlib]
Ignore=true
[CPython.test_resource] # IronPython.test_resource_stdlib
Ignore=true
[CPython.test_robotparser]
Ignore=true
Reason=StackOverflowException - https://github.com/IronLanguages/ironpython2/issues/182
[CPython.test_runpy]
Ignore=true
Reason=NotImplementedError: sys.implementation.cache_tag is None
[CPython.test_sax] # IronPython.test_sax_stdlib
Ignore=true
[CPython.test_scope] # IronPython.test_scope_stdlib
Ignore=true
[CPython.test_script_helper]
Ignore=true
[CPython.test_select]
RunCondition=$(IS_POSIX) # TODO: debug
Ignore=true
[CPython.test_selectors]
Ignore=true
[CPython.test_set] # IronPython.test_set_stdlib
Ignore=true
[CPython.test_shelve]
NotParallelSafe=true
[CPython.test_shutil]
RunCondition=NOT $(IS_POSIX) # TODO: debug
[CPython.test_signal]
Ignore=true
[CPython.test_site]
Ignore=true
[CPython.test_smtpd] # Module will be removed in 3.12 - https://github.com/IronLanguages/ironpython3/issues/1352
Ignore=true
[CPython.test_smtplib]
RunCondition=NOT $(IS_POSIX) # TODO: debug
[CPython.test_socket] # IronPython.test_socket_stdlib
Ignore=true
[CPython.test_socketserver]
Ignore=true # blocked by https://github.com/IronLanguages/ironpython3/issues/1221
[CPython.test_source_encoding]
IsolationLevel=ENGINE # source file in a non-UTF-8 encoding
[CPython.test_spwd] # Module will be removed in 3.13 - https://github.com/IronLanguages/ironpython3/issues/1352
RunCondition=$(IS_POSIX) AND NOT $(IS_OSX) # https://github.com/IronLanguages/ironpython3/issues/1545
[CPython.test_sqlite]
Ignore=true
[CPython.test_ssl] # IronPython.test_ssl_stdlib
Ignore=true
Reason=Blocking
[CPython.test_startfile]
RunCondition=NOT $(IS_POSIX) # TODO: debug?
[CPython.test_stat]
Ignore=true
[CPython.test_statistics]
Ignore=true
[CPython.test_string_literals] # IronPython.test_string_literals_stdlib
Ignore=true
[CPython.test_stringprep]
Ignore=true
Reason=Requires unicode 3.2.0 data - https://github.com/IronLanguages/ironpython3/issues/691
[CPython.test_strptime] # IronPython.test_strptime_stdlib
Ignore=true
[CPython.test_strtod]
Ignore=true
Reason=unittest.case.SkipTest: correctly-rounded string->float conversions not available on this system
[CPython.test_struct] # IronPython.test_struct_stdlib
Ignore=true
[CPython.test_structmembers]
Ignore=true
Reason=ImportError: No module named '_testcapi'
[CPython.test_subclassinit] # new in 3.6
Ignore=true
[CPython.test_subprocess]
RunCondition=NOT $(IS_POSIX) AND NOT $(IS_NETCOREAPP) # TODO: debug
Reason=TODO: figure out
IsolationLevel=PROCESS
Redirect=true
Ignore=true
[CPython.test_sunau] # Module will be removed in 3.13 - https://github.com/IronLanguages/ironpython3/issues/1352
Ignore=true
Reason=ImportError: No module named audioop
[CPython.test_sundry]
Ignore=true
Reason=ImportError: No module named _msi
[CPython.test_super] # IronPython.test_super_stdlib
Ignore=true
[CPython.test_support] # IronPython.test_support_stdlib
Ignore=true
[CPython.test_symtable]
Ignore=true
Reason=ImportError: No module named _symtable
[CPython.test_syntax]
Ignore=true
[CPython.test_sys]
Ignore=true
Reason=StackOverflowException
[CPython.test_sys_setprofile]
Ignore=true
Reason=AttributeError: 'module' object has no attribute 'setprofile'
[CPython.test_sys_settrace]
MaxRecursion=100
Tracing=true
IsolationLevel=ENGINE
Ignore=true
[CPython.test_sysconfig]
Ignore=true
[CPython.test_syslog]
RunCondition=$(IS_POSIX)
Ignore=true
Reason=ImportError: No module named syslog
[CPython.test_tarfile]
Ignore=true
[CPython.test_tcl]
Ignore=true
Reason=unittest.case.SkipTest: No module named '_tkinter'
[CPython.test_telnetlib] # Module will be removed in 3.13 - https://github.com/IronLanguages/ironpython3/issues/1352
RunCondition=NOT $(IS_LINUX) # TODO: debug
[CPython.test_tempfile]