Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CoreFX.issues.rsp « netcore - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53372a052853bd29286665d2cf434b0fc3dd2bc9 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
-notrait category=OuterLoop 
-notrait category=RequiresElevation
-notrait category=nonnetcoreapptests
-notrait category=nonmonotests
-notrait category=failing
-notrait category=IgnoreForCI

####################################################################
##  Microsoft.VisualBasic.Core.Tests
####################################################################

# https://github.com/mono/mono/issues/14854
-nomethod Microsoft.VisualBasic.Tests.ErrObjectTests.Clear

####################################################################
##  System.CodeDom.Tests
####################################################################

# TODO: Hangs
-noclass System.CodeDom.Compiler.Tests.ExecutorTests

####################################################################
##  System.Collections.Specialized.Tests
####################################################################

# TODO: Wrong exception
# https://github.com/mono/mono/issues/14858
-nomethod System.Collections.Specialized.Tests.NameValueCollectionCtorTests.Ctor_NegativeCapacity_ThrowsArgumentOutOfRangeException

####################################################################
##  System.Diagnostics.Process.Tests
####################################################################

# test process hangs
-nomethod System.Diagnostics.Tests.ProcessTests.Kill_EntireProcessTree_True_CalledOnTreeContainingCallingProcess_ThrowsInvalidOperationException

# times out waiting for remote process. Would it require system wide dotnet?
# https://github.com/mono/mono/issues/14903
-nomethod System.Diagnostics.Tests.ProcessTests.ProcessStart_UseShellExecute_ExecuteOrder

####################################################################
##  System.Diagnostics.TraceSource.Tests
####################################################################

# Object reference not set to an instance of an object on DefaultTraceListenerClassTests.MakeAssemblyGetEntryAssemblyReturnNull
# https://github.com/mono/mono/issues/14905
-nomethod System.Diagnostics.TraceSourceTests.DefaultTraceListenerClassTests.EntryAssemblyName_Null_NotIncludedInTrace

####################################################################
##  System.Diagnostics.Tracing.Tests
####################################################################

# System.SR needs implemented.
# https://github.com/mono/mono/issues/14907
-nomethod BasicEventSourceTests.TestsManifestNegative.Test_GenerateManifest_InvalidEventSources

####################################################################
##  System.Dynamic.Runtime.Tests
####################################################################

# ambigous methods
# https://github.com/mono/mono/issues/14906
-nomethod ManagedTests.DynamicCSharp.Conformance.dynamic.overloadResolution.Methods.Oneclass2methods.twoprms004.twoprms004.Test.DynamicCSharpRunTest

####################################################################
##  System.IO.Tests
####################################################################

# TODO: Hangs
-nomethod System.IO.Tests.Directory_SetCurrentDirectory+Directory_SetCurrentDirectory_SymLink.SetToPathContainingSymLink

# flaky test (The process cannot access the file ...)
-nomethod System.IO.Tests.File_Copy_str_str.CopyFileWithData_MemberData

####################################################################
##  System.Linq.Expressions.Tests
####################################################################

# OOM Exception gets thrown for the 68 (currently) tests that fail.
# https://github.com/mono/mono/issues/14912
-nomethod System.Linq.Expressions.Tests.ArrayBoundsTests.NewArrayBounds*

# Exceptions are different.
# https://github.com/mono/mono/issues/14918
-nomethod System.Linq.Expressions.Tests.BindTests.ConstantField

# System.Reflection.Emit type load / init exception https://github.com/mono/mono/issues/14919
-nomethod System.Linq.Expressions.Tests.Return.TailCallThenReturn
-nomethod System.Linq.Expressions.Tests.UnaryArithmeticNegateCheckedNullableTests.VerifyIL_NullableShortNegateChecked
-noclass System.Linq.Expressions.Tests.StackSpillerTests
-noclass System.Linq.Expressions.Tests.LambdaTests
-nomethod System.Linq.Expressions.Tests.BinaryCoalesceTests.VerifyIL_NullableIntCoalesceToNullableInt
-nomethod System.Linq.Expressions.Tests.UnaryArithmeticNegateCheckedTests.VerifyIL_ShortNegateChecked
-nomethod System.Linq.Expressions.Tests.BlockTests.InsignificantBlock
-nomethod System.Linq.Expressions.Tests.CompilerTests.VerifyIL_*

# InvalidOperationException - Sequence contains no matching element
# https://github.com/mono/mono/issues/14920
-nomethod System.Linq.Expressions.Tests.ArrayAccessTests.ArrayAccess_MultiDimensionalOf1
-nomethod System.Linq.Expressions.Tests.ArrayAccessTests.ArrayIndex_MultiDimensionalOf1
-nomethod System.Linq.Expressions.Tests.MemberAccessTests.Property_NoGetOrSetAccessors_ThrowsArgumentException
-nomethod System.Linq.Expressions.Tests.IndexExpressionTests.NoAccessorIndexedProperty

# IndexOutOfRangeException
# https://github.com/mono/mono/issues/14921
-nomethod System.Linq.Expressions.Tests.ArrayAccessTests.NonZeroBasedOneDimensionalArrayAccess

# System.InvalidOperationException : Operation is not valid due to the current state of the object.
# https://github.com/mono/mono/issues/14924
-nomethod System.Linq.Expressions.Tests.ExceptionHandlingExpressions.ExceptionThrownInFilter

# legit test failure... Expected 4 / actual 0
# https://github.com/mono/mono/issues/14925
-nomethod System.Linq.Expressions.Tests.ExceptionHandlingExpressions.ExpressionsUnwrapeExternallyThrownRuntimeWrappedException

# Expected exception but none was thrown
# https://github.com/mono/mono/issues/14927
-nomethod System.Linq.Expressions.Tests.IndexExpressionTests.IndexedPropertySetterValueTypeNotMatchPropertyType
-nomethod System.Linq.Expressions.Tests.IndexExpressionTests.IndexedPropertyGetReturnsWrongType

# Expected ArgumentException got IndexOutOfRangeException https://github.com/mono/mono/issues/14930
-nomethod System.Linq.Expressions.Tests.ArrayIndexTests.NonZeroBasedOneDimensionalArrayIndex
-nomethod System.Linq.Expressions.Tests.ArrayIndexTests.NonZeroBasedOneDimensionalArrayIndexMethod

# OOM Exception.  Weird
# https://github.com/mono/mono/issues/14933
-nomethod System.Linq.Expressions.Tests.ArrayBoundsTests.SingleNegativeBoundErrorMessage

# Arithmetic operation resulted in an overflow.
# https://github.com/mono/mono/issues/14934
-nomethod System.Linq.Expressions.Tests.ArrayBoundsTests.MultipleNegativeBoundErrorMessage

####################################################################
##  System.Linq.Parallel.Tests
####################################################################

# fails w/ an ArgumentException: Arg_ObjObjEx https://github.com/mono/mono/issues/14956
-nomethod System.Linq.Parallel.Tests.PlinqModesTests.WithExecutionMode_Multiple

####################################################################
##  System.Memory.Tests
####################################################################

# Reflection TargetException: Non-static method requires a target. 
# https://github.com/mono/mono/issues/14962
-nomethod System.SpanTests.SpanTests.ReadOnlyMemory_PropertyReturningReadOnlySpan

# Should throw NotSupportedException, but we do not. 
# https://github.com/mono/mono/issues/14993
-nomethod System.SpanTests.SpanTests.ReadOnlySpan_Constructor
-nomethod System.SpanTests.SpanTests.Span_Constructor

# Should throw NotSupportedException - Non static method requires a target
# https://github.com/mono/mono/issues/14998
-nomethod System.SpanTests.SpanTests.Span_InstanceMethod
-nomethod System.SpanTests.SpanTests.Memory_PropertyReturningSpan
-nomethod System.SpanTests.SpanTests.ReadOnlySpan_InstanceMethod

# Should throw OutOfMemory Exception, but does not throw
# https://github.com/mono/mono/issues/15002
-nomethod System.Buffers.Tests.ArrayBufferWriterTests_String.Invalid_Ctor
-nomethod System.Buffers.Tests.ArrayBufferWriterTests_Char.Invalid_Ctor
-nomethod System.Buffers.Tests.ArrayBufferWriterTests_Byte.Invalid_Ctor

####################################################################
##  System.Net.Http.Functional.Tests
####################################################################

# TODO: Crashes runtime inside Interop.Http.MultiPerform (marshalling issue?)
# https://github.com/mono/mono/issues/15005
-nomethod *PlatformHandler*

# TODO: Hangs
# https://github.com/mono/mono/issues/15006
-nomethod *ExpectedDiagnosticSourceActivityLogging*

# Works, but may trigger UI!
# NOTE: KEEPING THIS HERE BUT COMMENTED OUT - in the event the UI is shown (wasn't for me)
#-nomethod System.Net.Http.Functional.Tests.SocketsHttpHandler_HttpClientHandler_DangerousAcceptAllCertificatesValidator_Test.SetDelegate_ConnectionSucceeds

# When test is run, xunit claims it's not a part of the test suite 
#-nomethod System.Net.Http.Functional.Tests.SocketsHttpHandler_HttpClientHandler_ClientCertificates_Test.AutomaticOrManual_DoesntFailRegardlessOfWhetherClientCertsAreAvailable

####################################################################
##  System.Net.Sockets.Tests
####################################################################

# TODO: Hangs and fails.
# https://github.com/mono/mono/issues/15010
-nomethod System.Net.Sockets.Tests.CreateSocket.CtorAndAccept_SocketNotKeptAliveViaInheritance

# flaky test
-nomethod System.Net.Sockets.Tests.SocketOptionNameTest.MulticastInterface_Set_AnyInterface_Succeeds

####################################################################
##  System.Reflection.Emit.ILGeneration.Tests
####################################################################

# System.Reflection implementation to do.
-noclass System.Reflection.Emit.Tests.CustomAttributeBuilderTests
-nomethod System.Reflection.Emit.Tests.SignatureHelperAddArgument.*
-nomethod System.Reflection.Emit.Tests.SignatureHelperGetPropertySigHelper.*
-nomethod System.Reflection.Emit.Tests.ILGeneratorEmit3.Emit_OpCodes_LocalBuilder_TooManyLocals_ThrowsInvalidOperationException
-nomethod System.Reflection.Emit.Tests.ILGeneratorEmit3.Emit_OpCodes_LocalBuilder_LocalFromDifferentMethod_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.ILGeneratorDeclareLocal.DeclareLocal_TypeCreated_ThrowsInvalidOperationException
-nomethod System.Reflection.Emit.Tests.ILGeneratorDeclareLocal.DeclareLocal_GlobalFunctionsCreated_ThrowsInvalidOperationException
-nomethod System.Reflection.Emit.Tests.SignatureHelperGetMethodSigHelper.GetMethodSigHelper_Module_CallingConventions_Type_Length_ReturnsThree
-nomethod System.Reflection.Emit.Tests.SignatureHelperGetMethodSigHelper.GetMethodSigHelper_Module_Type_TypeArray
-nomethod System.Reflection.Emit.Tests.SignatureHelperGetMethodSigHelper.GetMethodSigHelper_CallingConventions_Type_Length_ReturnsThree
-nomethod System.Reflection.Emit.Tests.SignatureHelperGetMethodSigHelper.GetMethodSigHelper_Module_Type_TypeArray_NullObjectInParameterType_ThrowsArgumentNullException
-nomethod System.Reflection.Emit.Tests.ILGeneratorEmit2.Emit_OpCodes_LocalBuilder_TooManyLocals_ThrowsInvalidOperationException
-nomethod System.Reflection.Emit.Tests.ILGeneratorEmit2.Emit_OpCodes_LocalBuilder_LocalFromDifferentMethod_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.SetCustomAttributeTests.SetCustomAttribute_NullArgument_ThrowsArgumentNullException
-nomethod System.Reflection.Emit.Tests.ILGeneratorEmit4.TestEmitCalliNonBlittable
-nomethod System.Reflection.Emit.Tests.SignatureHelperAddArguments.AddArgument_NullObjectInRequiredCustomModifiers_ThrowsArgumentNullException
-nomethod System.Reflection.Emit.Tests.SignatureHelperAddArguments.AddArgument_NullObjectInOptionalCustomModifiers_ThrowsArgumentNullException
-nomethod System.Reflection.Emit.Tests.SignatureHelperAddArguments.AddArgument_DifferentCountsForCustomModifiers_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.SignatureHelperAddArguments.AddArguments_SignatureFinished_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.SignatureHelperAddArguments.AddArguments

####################################################################
##  System.Reflection.Emit.Tests
####################################################################

# Mono behaves like coreclr but the test doesn't detect it
-nomethod System.Reflection.Emit.Tests.AssemblyTests.DefineDynamicModule

-nomethod System.Reflection.Emit.Tests.MethodBuilderEquals.Equals
-nomethod System.Reflection.Emit.Tests.ConstructorBuilderToString.ToString_NullRequiredOptionalCustomModifiers
-nomethod System.Reflection.Emit.Tests.ConstructorBuilderToString.ToString_NoRequiredOptionalCustomModifiers
-nomethod System.Reflection.Emit.Tests.EnumBuilderMethodTests.DefineLiteral
-nomethod System.Reflection.Emit.Tests.EnumBuilderMethodTests.DefineLiteral_InvalidLiteralValue_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.EnumBuilderMethodTests.SetCustomAttribute_ConstructorInfo_ByteArray
-nomethod System.Reflection.Emit.Tests.EnumBuilderMethodTests.SetCustomAttribute_CustomAttributeBuilder
-nomethod System.Reflection.Emit.Tests.EnumBuilderPropertyTests.Guid_TypeCreated
-nomethod System.Reflection.Emit.Tests.FieldBuilderSetConstant.SetConstant_InvalidType_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.GenericTypeParameterBuilderSetInterfaceConstraints.SetInterfaceConstraints_OneCustomInterface
-nomethod System.Reflection.Emit.Tests.GenericTypeParameterBuilderSetInterfaceConstraints.SetInterfaceConstraints_MultipleCustomInterfaces
-nomethod System.Reflection.Emit.Tests.MethodBuilderDefineGenericParameters.DefineGenericParameters_SingleTypeParameter_SetImplementationFlagsCalled_ThrowsInvalidOperationException
-nomethod System.Reflection.Emit.Tests.MethodBuilderDefineGenericParameters.DefineGenericParameters_TwoTypeParameters_SetImplementationFlagsCalled_ThrowsInvalidOperationException
-nomethod System.Reflection.Emit.Tests.MethodBuilderDefineGenericParameters.DefineGenericParameters_SingleTypeParameter_AlreadyDefined_ThrowsInvalidOperationException
-nomethod System.Reflection.Emit.Tests.MethodBuilderDefineGenericParameters.DefineGenericParameters_TwoTypeParameters_AlreadyDefined_ThrowsInvalidOperationException
-nomethod System.Reflection.Emit.Tests.MethodBuilderGetILGenerator.GetILGenerator_NoMethodBody_ThrowsInvalidOperationException
-nomethod System.Reflection.Emit.Tests.MethodBuilderMakeGenericMethod.TestNotThrowsExceptionOnNull
-nomethod System.Reflection.Emit.Tests.MethodBuilderMakeGenericMethod.TestNotThrowsExceptionOnEmptyArray1
-nomethod System.Reflection.Emit.Tests.MethodBuilderMakeGenericMethod.TestNotThrowsExceptionOnEmptyArray2
-nomethod System.Reflection.Emit.Tests.MethodBuilderReturnParameter.ReturnParameter_NoBody_ThrowsInvalidOperationException
-nomethod System.Reflection.Emit.Tests.MethodBuilderSetParameters.SetParameters
-nomethod System.Reflection.Emit.Tests.MethodBuilderSetParameters.SetParameters_NullParameter_ThrowsArgumentNullException
-nomethod System.Reflection.Emit.Tests.MethodBuilderToString.ToString_AllFieldsSet
-nomethod System.Reflection.Emit.Tests.MethodBuilderToString.ToString_NameAndAttributeSet
-nomethod System.Reflection.Emit.Tests.MethodBuilderToString.ToString_NameAttributeAndSignatureSetSet
-nomethod System.Reflection.Emit.Tests.MethodBuilderToString.ToString_NonGenericMethod
-nomethod System.Reflection.Emit.Tests.MethodBuilderToString.ToString_GenericMethod
-nomethod System.Reflection.Emit.Tests.ModuleBuilderDefineEnum.DefineEnum
-nomethod System.Reflection.Emit.Tests.ModuleBuilderDefineEnum.DefineEnum_DynamicUnderlyingType_Works
-nomethod System.Reflection.Emit.Tests.ModuleBuilderDefineEnum.DefineEnum_ByRefUnderlyingType_ThrowsCOMExceptionOnCreation
-nomethod System.Reflection.Emit.Tests.ModuleBuilderDefineType.DefineType
-nomethod System.Reflection.Emit.Tests.ModuleBuilderGetArrayMethod.GetArrayMethod_ValidArrayValues_VoidReturnType
-nomethod System.Reflection.Emit.Tests.ModuleBuilderGetArrayMethod.GetArrayMethod_ValidArrayValues_ValueReturnType
-nomethod System.Reflection.Emit.Tests.ModuleBuilderGetArrayMethod.GetArrayMethod_ValidArrayValues_ReferenceReturnType
-nomethod System.Reflection.Emit.Tests.ModuleBuilderGetArrayMethod.GetArrayMethod_ValidArrayValues_ValueParameterType
-nomethod System.Reflection.Emit.Tests.ModuleBuilderGetArrayMethod.GetArrayMethod_ValidArrayValues_ReferenceParameterType
-nomethod System.Reflection.Emit.Tests.ModuleBuilderGetArrayMethod.GetArrayMethod_JaggedArray
-nomethod System.Reflection.Emit.Tests.ModuleBuilderGetArrayMethod.GetArrayMethod_MultiDimensionalArray
-nomethod System.Reflection.Emit.Tests.ModuleBuilderGetArrayMethod.GetArrayMethod_NullParameters
-nomethod System.Reflection.Emit.Tests.ModuleBuilderGetArrayMethod.GetArrayMethod_ArrayClassNotArray_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.ModuleBuilderGetArrayMethod.GetArrayMethod_InvalidArgument_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.PropertyBuilderTest2.AddOtherMethod
-nomethod System.Reflection.Emit.Tests.PropertyBuilderTest11.SetConstant
-nomethod System.Reflection.Emit.Tests.PropertyBuilderTest11.SetConstant_TypeNotConstant_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.PropertyBuilderTest12.SetCustomAttribute_CustomAttributeBuilder_TypeNotCreated_ThrowsInvalidOperationException
-nomethod System.Reflection.Emit.Tests.PropertyBuilderTest12.SetCustomAttribute_ConstructorInfo_ByteArray_TypeAlreadyCreated_ThrowsInvalidOperationException
-nomethod System.Reflection.Emit.Tests.PropertyBuilderTest15.TestThrowsExceptionForCreateTypeCalled
-nomethod System.Reflection.Emit.Tests.PropertyBuilderTest16.SetValue_ThrowsNotSupportedException
-nomethod System.Reflection.Emit.Tests.TypeBuilderAddInterfaceImplementation.AddInterfaceImplementation_TypeNotInterface_ThrowsTypeLoadExceptionOnCreation
-nomethod System.Reflection.Emit.Tests.TypeBuilderAddInterfaceImplementation.AddInterfaceImplementation_TypeDoesntImplementInterface_ThrowsTypeLoadExceptionOnCreation
-nomethod System.Reflection.Emit.Tests.TypeBuilderAssemblyQualifiedName.AssemblyQualifiedName
-nomethod System.Reflection.Emit.Tests.TypeBuilderCreateType.CreateType_BadAttributes
-nomethod System.Reflection.Emit.Tests.TypeBuilderCreateTypeInfo.CreateType_InvalidTypeAttributes_Throws

# Extra RTSpecialName attribute
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineConstructor.DefineConstructor
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineConstructor.DefineConstructor_NullRequiredAndOptionalCustomModifiers
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineDefaultConstructor.DefineDefaultConstructor
-nomethod System.Reflection.Emit.Tests.MethodBuilderDefineTypeInitializer.DefineTypeInitializer

-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineMethodTests.DefineMethod
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineFieldTests.DefineField
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineFieldTests.DefineField_InvalidFieldAttributes_ThrowsTypeLoadExceptionOnCreation
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineFieldTests.DefineField_DynamicFieldTypeNotCreated_ThrowsTypeLoadException
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineGenericParameters.DefineGenericParameters_AlreadyDefinedGenericParameters_ThrowsInvalidOperationException
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineEvent.DefineEvent
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineEvent.DefineProperty_InvalidUnicodeChars
-nomethod System.Reflection.Emit.Tests.MethodBuilderDefineMethodOverride.DefineMethodOverride_NothingToOverride_ThrowsTypeLoadExceptionOnCreation
-nomethod System.Reflection.Emit.Tests.MethodBuilderDefineMethodOverride.DefineMethodOverride_ClassDoesNotImplementOrInheritMethod_ThrowsTypeLoadExceptionOnCreation
-nomethod System.Reflection.Emit.Tests.MethodBuilderDefineMethodOverride.DefineMethodOverride_BodyAndDeclarationTheSame_ThrowsTypeLoadExceptionOnCreation
-nomethod System.Reflection.Emit.Tests.MethodBuilderDefineMethodOverride.DefineMethodOverride_CalledTwiceWithDifferentBodies_ThrowsTypeLoadExceptionOnCreation
-nomethod System.Reflection.Emit.Tests.MethodBuilderDefineMethodOverride.DefineMethodOverride_BodyAndDeclarationHaveDifferentSignatures_ThrowsTypeLoadExceptionOnCreation
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineNestedType.DefineNestedType
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineNestedType.DefineNestedType_LongName_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineNestedType.DefineNestedType_InvalidAttributes_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineNestedType.DefineNestedType_InvalidParent_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineNestedType.DefineNestedType_InvalidInterfaceType_ThrowsTypeLoadExceptionOnCreation
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineProperty.DefineProperty
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineProperty.DefineProperty_OpenGenericReturnType_ThrowsBadImageFormatExceptionGettingCreatedPropertyType
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineProperty.DefineProperty_NullParameterType_ThrowsArgumentNullException
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineProperty.DefineProperty_OpenGenericParameterType_ThrowsBadImageFormatExceptionGettingCreatedPropertyType
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineProperty.DefineProperty_DynamicPropertyTypeNotCreated_ThrowsTypeLoadException
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineProperty.DefineProperty_DynamicParameterTypeNotCreated_ThrowsTypeLoadException
-nomethod System.Reflection.Emit.Tests.TypeBuilderDefineProperty.DefineProperty_CalledMultipleTimes_Works
-nomethod System.Reflection.Emit.Tests.TypeBuilderGetConstructor.GetConstructor_TypeNotTypeBuilder_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.TypeBuilderGetConstructor.GetConstructor_DeclaringTypeOfConstructorNotGenericTypeDefinitionOfType_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.TypeBuilderGetConstructor.GetConstructor_TypeNotGeneric_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.TypeBuilderGetField.GetField_TypeNotTypeBuilder_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.TypeBuilderGetField.GetField_DeclaringTypeOfFieldNotGenericTypeDefinitionOfType_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.TypeBuilderGetField.GetField_TypeNotGeneric_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.TypeBuilderGetMethod.GetMethod_TypeNotTypeBuilder_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.TypeBuilderGetMethod.GetMethod_MethodDefinitionNotInTypeGenericDefinition_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.TypeBuilderGetMethod.GetMethod_MethodNotGenericTypeDefinition_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.TypeBuilderGetMethod.GetMethod_TypeIsNotGeneric_ThrowsArgumentException
-nomethod System.Reflection.Emit.Tests.TypeBuilderGUID.Guid_TypeCreated_NotEmpty

-nomethod System.Reflection.Emit.Tests.AssemblyTests.DefineDynamicAssembly_AssemblyName_AssemblyBuilderAccess
-nomethod System.Reflection.Emit.Tests.AssemblyTests.DefineDynamicAssembly_AssemblyName_AssemblyBuilderAccess_CustomAttributeBuilder

# need to reflect https://github.com/dotnet/coreclr/pull/24937 changes
-nomethod System.Reflection.Emit.Tests.MethodBuilderSetSignature.SetSignature_AllParametersNull
-nomethod System.Reflection.Emit.Tests.MethodBuilderSetReturnType.SetReturnType_NullReturnType_ReturnsVoid
-nomethod System.Reflection.Emit.Tests.MethodBuilderGetGenericArguments.GetGenericArguments_NonGenericMethod_ReturnsEmptyArray
-nomethod System.Reflection.Emit.Tests.MethodBuilderSetSignature.SetSignature_NullReturnType_CustomModifiersSetToWrongTypes

####################################################################
##  System.Reflection.Tests
####################################################################

# Expected to throw FileLoadException, but we aren't
# https://github.com/mono/mono/issues/15021
-nomethod System.Reflection.Tests.AssemblyNameTests.Ctor_String_Invalid

# Expected ArgumentException, but none was thrown
# https://github.com/mono/mono/issues/15024
-nomethod System.Reflection.Tests.MethodInfoTests.Invoke_OptionalParameterUnassingableFromMissing_WithMissingValue_ThrowsArgumentException

# Static ctors cannot be invoke with one Invoke overload
# https://github.com/mono/mono/issues/15025
-nomethod System.Reflection.Tests.ConstructorInfoTests.Invoke_StaticConstructor_ThrowsMemberAccessException

# Expected MemberAccessException, but we're throwing TargetException
# https://github.com/mono/mono/issues/15026
-nomethod System.Reflection.Tests.ConstructorInfoTests.Invoke_AbstractClass_ThrowsMemberAccessException

# Expected TargetParameterCountException, but we have ArgumentException
# https://github.com/mono/mono/issues/15027
-nomethod System.Reflection.Tests.PropertyInfoTests.GetValue_Invalid

# Expected empty string, but got enumType instead 
# https://github.com/mono/mono/issues/15028
-nomethod System.Reflection.Tests.TypeInfoTests.IsEnumDefined_Invalid

# Fails because our Object class has extra instance methods
# https://github.com/mono/mono/issues/15029
-nomethod System.Reflection.Tests.TypeInfoTests.FindMembers
-nomethod System.Reflection.Tests.TypeInfoTests.GetMethods
-nomethod System.Reflection.Tests.TypeInfoTests.GetMembers
-nomethod System.Reflection.Tests.TypeInfoTests.GetMethod

# CustomConstantAttribute not supported
# https://github.com/mono/mono/issues/15037
-nomethod System.Reflection.Tests.ParameterInfoTests.RawDefaultValueFromAttribute

# SKIPPED
-nomethod System.Reflection.Tests.MemberInfoNetCoreAppTests.HasSameMetadataDefinitionAs__CornerCase_HasElementTypes

# Assertion failed... Not sure why 
# https://github.com/mono/mono/issues/15069
-nomethod System.Reflection.Tests.MemberInfoNetCoreAppTests.HasSameMetadataDefinitionAs_GenericTypeParameters

# Returns the same string, but still fails.  
# https://github.com/mono/mono/issues/15076
-nomethod System.Reflection.Tests.AssemblyTests.LoadFrom_SameIdentityAsAssemblyWithDifferentPath_ReturnsEqualAssemblies

####################################################################
##  System.Resources.ResourceManager.Tests
####################################################################

# TODO: Missing assembly resolve events on AppDomain and AssemblyLoadContext
# https://github.com/mono/mono/issues/15081
-nomethod System.Resources.Tests.ResourceManagerTests.GetString_ExpectEvents

####################################################################
##  System.Runtime.InteropServices.Tests
####################################################################

# Marshal Methods WILL NOT BE Implemented in MonoVM
# https://github.com/mono/mono/issues/15085 
-nomethod System.Runtime.InteropServices.Tests.IntPtrTests.ReadIntPtr_NotReadable_ThrowsArgumentException
-nomethod System.Runtime.InteropServices.Tests.IntPtrTests.WriteIntPtr_BlittableObject_Roundtrips
-nomethod System.Runtime.InteropServices.Tests.IntPtrTests.WriteIntPtr_StructWithReferenceTypes_ReturnsExpected
-nomethod System.Runtime.InteropServices.Tests.Int64Tests.WriteInt64_StructWithReferenceTypes_ReturnsExpected
-nomethod System.Runtime.InteropServices.Tests.Int64Tests.ReadInt64_BlittableObject_ReturnsExpected
-nomethod System.Runtime.InteropServices.Tests.Int16Tests.ReadInt16_NullObject_ThrowsAccessViolationException
-nomethod System.Runtime.InteropServices.Tests.Int16Tests.ReadInt16_NotReadable_ThrowsArgumentException
-nomethod System.Runtime.InteropServices.Tests.Int16Tests.WriteInt16_NotReadable_ThrowsArgumentException
-nomethod System.Runtime.InteropServices.Tests.Int16Tests.WriteInt16_BlittableObject_Roundtrips
-nomethod System.Runtime.InteropServices.Tests.Int16Tests.ReadInt16_StructWithReferenceTypes_ReturnsExpected
-nomethod System.Runtime.InteropServices.Tests.Int16Tests.WriteInt16_NullObject_ThrowsAccessViolationException
-nomethod System.Runtime.InteropServices.Tests.Int16Tests.ReadInt16_BlittableObject_ReturnsExpected
-nomethod System.Runtime.InteropServices.Tests.Int16Tests.WriteInt16_StructWithReferenceTypes_ReturnsExpected
-nomethod System.Runtime.InteropServices.Tests.IntPtrTests.ReadIntPtr_BlittableObject_ReturnsExpected
-nomethod System.Runtime.InteropServices.Tests.Int64Tests.WriteInt64_NotReadable_ThrowsArgumentException
-nomethod System.Runtime.InteropServices.Tests.Int64Tests.WriteInt64_BlittableObject_Roundtrips
-nomethod System.Runtime.InteropServices.Tests.Int64Tests.WriteInt64_NullObject_ThrowsAccessViolationException
-nomethod System.Runtime.InteropServices.Tests.Int64Tests.ReadInt64_NotReadable_ThrowsArgumentException
-nomethod System.Runtime.InteropServices.Tests.Int32Tests.ReadInt32_NullObject_ThrowsAccessViolationException
-nomethod System.Runtime.InteropServices.Tests.Int32Tests.WriteInt32_NullObject_ThrowsAccessViolationException
-nomethod System.Runtime.InteropServices.Tests.Int32Tests.WriteInt32_BlittableObject_Roundtrips
-nomethod System.Runtime.InteropServices.Tests.Int32Tests.WriteInt32_NotReadable_ThrowsArgumentException
-nomethod System.Runtime.InteropServices.Tests.Int32Tests.WriteInt32_StructWithReferenceTypes_ReturnsExpected
-nomethod System.Runtime.InteropServices.Tests.Int32Tests.ReadInt32_StructWithReferenceTypes_ReturnsExpected
-nomethod System.Runtime.InteropServices.Tests.Int32Tests.ReadInt32_NotReadable_ThrowsArgumentException
-nomethod System.Runtime.InteropServices.Tests.Int32Tests.ReadInt32_BlittableObject_ReturnsExpected
-nomethod System.Runtime.InteropServices.Tests.IntPtrTests.ReadIntPtr_NullObject_ThrowsAccessViolationException
-nomethod System.Runtime.InteropServices.Tests.IntPtrTests.WriteIntPtr_NullObject_ThrowsAccessViolationException
-nomethod System.Runtime.InteropServices.Tests.IntPtrTests.WriteIntPtr_NotReadable_ThrowsArgumentException
-nomethod System.Runtime.InteropServices.Tests.IntPtrTests.ReadIntPtr_StructWithReferenceTypes_ReturnsExpected
-nomethod System.Runtime.InteropServices.Tests.ByteTests.ReadByte_BlittableObject_ReturnsExpected
-nomethod System.Runtime.InteropServices.Tests.ByteTests.WriteByte_NullObject_ThrowsAccessViolationException
-nomethod System.Runtime.InteropServices.Tests.ByteTests.WriteByte_StructWithReferenceTypes_ReturnsExpected
-nomethod System.Runtime.InteropServices.Tests.ByteTests.ReadByte_StructWithReferenceTypes_ReturnsExpected
-nomethod System.Runtime.InteropServices.Tests.ByteTests.WriteByte_BlittableObject_Roundtrips
-nomethod System.Runtime.InteropServices.Tests.ByteTests.WriteByte_NotReadable_ThrowsArgumentException
-nomethod System.Runtime.InteropServices.Tests.ByteTests.ReadByte_NullObject_ThrowsAccessViolationException
-nomethod System.Runtime.InteropServices.Tests.ByteTests.ReadByte_NotReadable_ThrowsArgumentException
-nomethod System.Runtime.InteropServices.Tests.Int64Tests.ReadInt64_NullObject_ThrowsAccessViolationException
-nomethod System.Runtime.InteropServices.Tests.Int64Tests.ReadInt64_StructWithReferenceTypes_ReturnsExpected
-nomethod System.Runtime.InteropServices.Tests.GetExceptionCodeTests.*
-nomethod System.Runtime.InteropServices.Tests.GetExceptionPointersTests.GetExceptionPointers_ReturnsExpected


# Not sure what to check
# Expected ArgumentException to be thrown, but none was
# https://github.com/mono/mono/issues/15087
-nomethod System.Runtime.InteropServices.Tests.DestroyStructureTests.DestroyStructure_NonRuntimeType_ThrowsArgumentException
-nomethod System.Runtime.InteropServices.Tests.OffsetOfTests.OffsetOf_NotMarshallable_ThrowsArgumentException
-nomethod System.Runtime.InteropServices.Tests.SizeOfTests.SizeOf_InvalidType_ThrowsArgumentException

# Check that the name in the argument exception is null or different
# https://github.com/mono/mono/issues/15090
-nomethod System.Runtime.InteropServices.Tests.OffsetOfTests.OffsetOf_NullFieldName_ThrowsArgumentNullException

# Returns type instead of expected fieldName 
# https://github.com/mono/mono/issues/15091
-nomethod System.Runtime.InteropServices.Tests.OffsetOfTests.OffsetOf_NonRuntimeField_ThrowsArgumentException

# Hardcodes offsets
# https://github.com/mono/mono/issues/15092
-nomethod System.Runtime.InteropServices.Tests.OffsetOfTests.OffsetOf_Decimal_ReturnsExpected

# Wants exception messages to be non-empty
# https://github.com/mono/mono/issues/15093
-nomethod System.Runtime.InteropServices.Tests.GetExceptionForHRTests.GetExceptionForHR_ErrorInfo_ReturnsValidException
-nomethod System.Runtime.InteropServices.Tests.GetExceptionForHRTests.GetExceptionForHR_NoErrorInfo_ReturnsValidException
-nomethod System.Runtime.InteropServices.Tests.ThrowExceptionForHRTests.ThrowExceptionForHR_NoErrorInfo_ReturnsValidException
-nomethod System.Runtime.InteropServices.Tests.ThrowExceptionForHRTests.ThrowExceptionForHR_ErrorInfo_ReturnsValidException

# Supported on Mono
# Expected ArgumentException
# https://github.com/mono/mono/issues/15097
-nomethod System.Runtime.InteropServices.Tests.GetFunctionPointerForDelegateTests.GetFunctionPointer_GenericDelegate_ThrowsArgumentException

# AE with The structure must not be a value class;
# https://github.com/mono/mono/issues/15101
-nomethod System.Runtime.InteropServices.Tests.PtrToStructureTests.PtrToStructure_ZeroPointer_ThrowsArgumentNullException

# Expected 255 / Actual 1
# https://github.com/mono/mono/issues/15102
-nomethod System.Runtime.InteropServices.Tests.StructureToPtrTests.StructureToPtr_ByValBoolArray_Success

# MarshalDirectiveException
# https://github.com/mono/mono/issues/15103
-nomethod System.Runtime.InteropServices.Tests.StructureToPtrTests.StructureToPtr_ByValDateArray_Success

# Expects AE but none was thrown
# https://github.com/mono/mono/issues/15104
-nomethod System.Runtime.InteropServices.Tests.StructureToPtrTests.StructureToPtr_InvalidLengthByValArrayInStruct_ThrowsArgumentException

####################################################################
##  System.Runtime.Numerics.Tests
####################################################################

# Expected vs Actual are pretty different
# https://github.com/mono/mono/issues/15106
-nomethod System.Numerics.Tests.ComplexTests.Sin_Advanced

# Same as above
# https://github.com/mono/mono/issues/15107
-nomethod System.Numerics.Tests.ComplexTests.Sinh_Advanced

# Same as above
# https://github.com/mono/mono/issues/15108
-nomethod System.Numerics.Tests.ComplexTests.Cos_Advanced

# Same as above
# https://github.com/mono/mono/issues/15109
-nomethod System.Numerics.Tests.ComplexTests.Cosh_Advanced

# Same as above
# https://github.com/mono/mono/issues/15110
-nomethod System.Numerics.Tests.ComplexTests.Exp

####################################################################
##  System.Runtime.Serialization.Formatters.Tests
####################################################################

# Expected MemberAccessException but none was thrown
# https://github.com/mono/mono/issues/15111
-nomethod System.Runtime.Serialization.Formatters.Tests.FormatterServicesTests.GetUninitializedObject_OpenGenericClass_ThrowsMemberAccessException

# NotNull Assertion failure
# https://github.com/mono/mono/issues/15112
-nomethod System.Runtime.Serialization.Formatters.Tests.SerializationGuardTests.BlockReflectionDodging

# Expected AE but none thrown
# https://github.com/mono/mono/issues/15113
-nomethod System.Runtime.Serialization.Formatters.Tests.FormatterServicesTests.GetUninitializedObject_NotSupportedType_ThrowsArgumentException

# Expected TypeInitializationException but none thrown 
# https://github.com/mono/mono/issues/15114
-nomethod System.Runtime.Serialization.Formatters.Tests.FormatterServicesTests.GetUninitializedObject_StaticConstructorThrows_ThrowsTypeInitializationException

# Object reference not set to an instance of an object error
# https://github.com/mono/mono/issues/15115
-nomethod System.Runtime.Serialization.Formatters.Tests.BinaryFormatterTests.ValidateAgainstBlobs
-nomethod System.Runtime.Serialization.Formatters.Tests.BinaryFormatterTests.RoundtripManyObjectsInOneStream
-nomethod System.Runtime.Serialization.Formatters.Tests.BinaryFormatterTests.ValidateBasicObjectsRoundtrip

####################################################################
##  System.Runtime.Tests
####################################################################

# https://github.com/mono/mono/issues/14291 incorrect line numbers
# See https://github.com/mono/mono/issues/15140 and https://github.com/mono/mono/issues/15141
-nomethod System.Tests.ExceptionTests.ThrowStatementDoesNotResetExceptionStackLineSameMethod
-nomethod System.Tests.ExceptionTests.ThrowStatementDoesNotResetExceptionStackLineOtherMethod

# RuntimeAssembly.IsCollectible is not implemented yet
# Implementation task https://github.com/mono/mono/issues/15142
-nomethod System.Reflection.Tests.IsCollectibleTests.*

# Mono ignores [Optional] attribute defined on parameters in delegates
# https://github.com/mono/mono/issues/15148
-nomethod System.Tests.DelegateTests.DynamicInvoke_OptionalParameterUnassingableFromMissing_WithMissingValue
-nomethod System.Tests.DelegateTests.DynamicInvoke_OptionalParameter_WithMissingValue
-nomethod System.Tests.DelegateTests.DynamicInvoke_ParameterSpecification_ArrayOfMissing

# mono doesn't support termination signals, the test kills a process via libc's kill(pid)
# and expects it to trigger domain.ProcessExit event
-nomethod System.Tests.ExitCodeTests.SigTermExitCode

# error: Invalid IL code in (wrapper dynamic-method) object:<xsl:apply-templates> (System.Xml.Xsl.Runtime.XmlQueryRuntime,System.Xml.XPath.XPathNavigator,double): IL_0179: ret
-nomethod System.Tests.Types.VoidTests.IsByRef_Get_ReturnsExpected

# throws ArgumentException
# https://github.com/mono/mono/issues/15152
-nomethod System.Reflection.Tests.PointerTests.PointerPropertyGetValue

# GC.GetTotalAllocatedBytes is not implemented
-nomethod System.Tests.GCTests.GetTotalAllocatedBytes

# GC.GetAllocatedBytesForCurrentThread is not implemented
-nomethod System.Tests.GCTests.GetAllocatedBytesForCurrentThread

# GCSettings.LatencyMode is not implemented
-nomethod System.Tests.GCTests.LatencyRoundtrips

# GC.GetGCMemoryInfo is not implemented
-nomethod System.Tests.GCTests.GetGCMemoryInfo

# Could not load type 'System.Nullable`1[[System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]' from assembly 'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'
# https://github.com/mono/mono/issues/15153
-nomethod System.Tests.ActivatorTests.TestingCreateInstanceObjectHandleFullSignature

####################################################################
##  System.Threading.Tests
####################################################################

# Monitor.LockContentionCount is not implemented
# Implementation https://github.com/mono/mono/issues/15155
# https://github.com/mono/mono/issues/15156
-nomethod System.Threading.Tests.MonitorTests.Enter_HasToWait_LockContentionCountTest

# Process hangs and test fails with [ERROR] FATAL UNHANDLED EXCEPTION: System.Threading.WaitHandleCannotBeOpenedException: No handle of the given name exists.
# https://github.com/mono/mono/issues/15157
-nomethod System.Threading.Tests.MutexTests.CrossProcess_NamedMutex_ProtectedFileAccessAtomic

# Fails with typeof(System.Threading.WaitHandleCannotBeOpenedException): A WaitHandle with system-wide name '' cannot be created. A WaitHandle of a different type might have the same name.
# Expects an ArgumentException
# https://github.com/mono/mono/issues/15158
-nomethod System.Threading.Tests.MutexTests.OpenExisting_InvalidNames

# Expects ArgumentException but none is thrown
# https://github.com/mono/mono/issues/15159
-nomethod System.Threading.Tests.MutexTests.Ctor_InvalidNames_Unix

# Expects PlatformNotSupportedException, but we give an ArgumentNullException
# https://github.com/mono/mono/issues/15160
-nomethod System.Threading.Tests.SemaphoreTests.OpenExisting_NotSupported_Unix

# Expects PlatformNotSupportedException but none thrown
# https://github.com/mono/mono/issues/15161
-nomethod System.Threading.Tests.SemaphoreTests.Ctor_NamesArentSupported_Unix

####################################################################
##  System.Threading.ThreadPool.Tests
####################################################################

# Tests for ThreadPool.SetMaxThreads(-1, -1) == true, which only happens to work on CoreCLR because
# the managed SetMaxThreadsNative prototype uses "int"s while the unmanaged code uses "DWORD"s and
# thus it interprets it as large positive numbers.
#
# https://github.com/mono/mono/issues/15164
-nomethod System.Threading.ThreadPools.Tests.ThreadPoolTests.SetMinMaxThreadsTest

# TODO: Differences in behaviour between NetFX and CoreFX
-nomethod System.Threading.ThreadPools.Tests.ThreadPoolTests.SetMinThreadsTo0Test

# Explicitly skipped if it's MonoVM (SkipOnTargetFramework)
-nomethod System.Threading.ThreadPools.Tests.ThreadPoolTests.SetMinMaxThreadsTest_ChangedInDotNetCore

# ThreadPool.CompletedWorkItemCount is not implemented
# https://github.com/mono/mono/issues/14829
-nomethod System.Threading.ThreadPools.Tests.ThreadPoolTests.MetricsTest

####################################################################
##  System.ComponentModel.Composition.Tests
####################################################################

-nomethod System.ComponentModel.Composition.CompositionServicesTests.GetDefaultContractNameTest
-nomethod System.ComponentModel.Composition.MetadataViewProviderTests.GetMetadataView_InterfaceWithIndexer_ShouldThrowNotSupportedException
-nomethod Tests.Integration.ExportFactoryTests.ExportFactoryStandardImports_ShouldWorkProperly

# flaky test - System.TypeLoadException : Could not load type '_proxy_System.ComponentModel.Composition.IStronglyTypedStructure_3b7f133d-79c7-449e-8f68-22aa093dbb8d' from assembly ''.
-nomethod System.ComponentModel.Composition.MetadataAttributeTests.StronglyTypedStructureTest
-nomethod System.ComponentModel.Composition.MetadataAttributeTests.StronglyTypedStructureTestWithTransparentViews
-nomethod System.ComponentModel.Composition.MetadataViewProviderTests.GetMetadataView_IMetadataViewWithDefaultedInt64
-nomethod System.ComponentModel.Composition.ExportCollectionTests.ImportCollectionsFromContainerOnly

####################################################################
##  System.Composition.TypedParts.Tests
####################################################################

# Missing assembly Microsoft.VisualStudio.TestPlatform.ObjectModel, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
# https://github.com/mono/mono/issues/15170
-nomethod System.Composition.Hosting.Tests.ContainerConfigurationTests.WithAssemblies_Assemblies_ThrowsCompositionFailedExceptionOnCreation
-nomethod System.Composition.Hosting.Tests.ContainerConfigurationTests.WithAssembly_Assembly_ThrowsCompositionFailedExceptionOnCreation

####################################################################
##  System.Data.Common.Tests
####################################################################

# Invalid IL - IL_00bc: castclass 0x0100000d
-nomethod System.Data.Tests.SqlTypes.SqlCharsTest.ReadWriteXmlTest

# Invalid IL code in Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderSqlInt32:Read1_int (): IL_00bc: castclass 0x0100000d
# https://github.com/mono/mono/issues/15174
-nomethod System.Data.Tests.SqlTypes.SqlInt32Test.ReadWriteXmlTest

# System.InvalidProgramException : Invalid IL code in Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderSqlInt64:Read1_long (): IL_00bc: castclass 0x0100000d
# https://github.com/mono/mono/issues/15175
-nomethod System.Data.Tests.SqlTypes.SqlInt64Test.ReadWriteXmlTest

# System.InvalidProgramException : Invalid IL code in Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderSqlDouble:Read1_double (): IL_00bc: castclass 0x0100000d
# https://github.com/mono/mono/issues/15176
-nomethod System.Data.Tests.SqlTypes.SqlDoubleTest.ReadWriteXmlTest

# System.InvalidProgramException : Invalid IL code in Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderSqlInt16:Read1_short (): IL_00bc: castclass 0x0100000d
# https://github.com/mono/mono/issues/15177
-nomethod System.Data.Tests.SqlTypes.SqlInt16Test.ReadWriteXmlTest

# System.InvalidProgramException : Invalid IL code in Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderSqlDecimal:Read1_decimal (): IL_00bc: castclass 0x0100000d
# https://github.com/mono/mono/issues/15178
-nomethod System.Data.Tests.SqlTypes.SqlDecimalTest.ReadWriteXmlTest

# System.InvalidProgramException : Invalid IL code in Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderSqlString:Read1_string (): IL_00bc: castclass 0x0100000d
# https://github.com/mono/mono/issues/15179
-nomethod System.Data.Tests.SqlTypes.SqlStringTest.ReadWriteXmlTest

# Assert IsNotNull failure
# https://github.com/mono/mono/issues/15180
-nomethod System.Data.Common.Tests.DbConnectionTests.ProviderFactoryTest

####################################################################
##  System.Data.SqlClient.Tests
####################################################################

# Test does not run when included 
-nomethod System.Data.SqlClient.Tests.AADAccessTokenTest.InvalidCombinationOfAccessToken

# Hangs and then fails... All async tests display the same failure
# https://github.com/mono/mono/issues/15181
-nomethod System.Data.SqlClient.Tests.DiagnosticTest.ExecuteNonQueryAsyncTest
-nomethod System.Data.SqlClient.Tests.DiagnosticTest.ExecuteReaderAsyncTest
-nomethod System.Data.SqlClient.Tests.DiagnosticTest.ExecuteNonQueryAsyncErrorTest
-nomethod System.Data.SqlClient.Tests.DiagnosticTest.ExecuteScalarAsyncErrorTest
-nomethod System.Data.SqlClient.Tests.DiagnosticTest.ExecuteScalarAsyncTest

####################################################################
##  System.Diagnostics.StackTrace.Tests
####################################################################

# Expected -1, but got 0
# https://github.com/mono/mono/issues/15183
-nomethod System.Diagnostics.Tests.StackFrameTests.Ctor_SkipFrames

# Assertion differences 
# https://github.com/mono/mono/issues/15184
-nomethod System.Diagnostics.Tests.StackFrameTests.Ctor_Filename_LineNumber_ColNumber

# A little off 
# Assert.Equal() Failure
#                ↓ (pos 0)
#      Expected: MoveNext at offset 90 in file:line:column···
#      Actual:   .ctor at offset 90 in file:line:column Fi···
# https://github.com/mono/mono/issues/15186
-nomethod System.Diagnostics.Tests.StackFrameTests.ToString_Invoke_ReturnsExpected

# Assertion differences.  Expects -1, got 0
# https://github.com/mono/mono/issues/15187
-nomethod System.Diagnostics.Tests.StackFrameTests.Ctor_SkipFrames_FNeedFileInfo

####################################################################
##  System.Numerics.Vectors.Tests
####################################################################

# Expects NotSupportedException, but actual was TypeInitializationException
# https://github.com/mono/mono/issues/15190
-nomethod System.Numerics.Tests.GenericVectorTests.ConstructorWithUnsupportedTypes_DateTime
-nomethod System.Numerics.Tests.GenericVectorTests.ConstructorWithUnsupportedTypes_Char
-nomethod System.Numerics.Tests.GenericVectorTests.ConstructorWithUnsupportedTypes_Guid

####################################################################
##  System.Reflection.Context.Tests
####################################################################

# System.ArgumentNullException : Value cannot be null.
# Parameter name: attributeType
# https://github.com/mono/mono/issues/15191
-nomethod System.Reflection.Context.Tests.CustomReflectionContextTests.MapType_MemberAttributes_Success
-nomethod System.Reflection.Context.Tests.CustomReflectionContextTests.MapType_ParameterAttributes_Success
-nomethod System.Reflection.Context.Tests.CustomReflectionContextTests.MapType_Interface_Throws

####################################################################
##  System.Reflection.CoreCLR.Tests
####################################################################

# FileNotFoundException
# https://github.com/mono/mono/issues/15192
-nomethod System.Reflection.Tests.AssemblyTests.LoadFromStream_Location_IsEmpty

####################################################################
##  System.Reflection.TypeExtensions.CoreCLR.Tests
####################################################################

# Assertion... Expected true, got false
# https://github.com/mono/mono/issues/15194
-nomethod System.Reflection.Tests.MetadataTokenTests.SuccessImpliesNonNilWithCorrectTable

####################################################################
##  System.Runtime.Loader.DefaultContext.Tests
####################################################################

# Expected FileNotFoundException, got none
# https://github.com/mono/mono/issues/15195
-nomethod System.Runtime.Loader.Tests.DefaultLoadContextTests.LoadInDefaultContext

####################################################################
##  System.Runtime.Loader.RefEmitLoadContext.Tests
####################################################################

# Relies on AssemblyLoadContext.GetLoadContext, which is not implemented
-nomethod System.Runtime.Loader.Tests.RefEmitLoadContextTests.LoadRefEmitAssembly

####################################################################
##  System.Threading.Overlapped.Tests
####################################################################

# Overflow Exception
# https://github.com/mono/mono/issues/15197
-nomethod OverlappedTests.PropertyTest2

# NRE in Overlapped.Pack
# https://github.com/mono/mono/issues/15308
-nomethod OverlappedTests.PackNegTest
-nomethod OverlappedTests.PackNegTest1

# NRE at Overlapped.Unpack (similar to pack)
# https://github.com/mono/mono/issues/15310
-nomethod OverlappedTests.UnPackTest

# NRE may be similar to above
# https://github.com/mono/mono/issues/15311
-nomethod OverlappedTests.PropertyTest3
-nomethod OverlappedTests.PropertyTest1

# NRE
# https://github.com/mono/mono/issues/15312
-nomethod ThreadPoolBoundHandleTests.BindHandle_MinusOneAsHandle_ThrowsArgumentException

# No Exception thrown
# https://github.com/mono/mono/issues/15313 
-nomethod ThreadPoolBoundHandleTests.PreAllocatedOverlapped_NonBlittableTypeAsPinData_Throws
-nomethod ThreadPoolBoundHandleTests.PreAllocatedOverlapped_ObjectArrayWithNonBlittableTypeAsPinData_Throws
-nomethod ThreadPoolBoundHandleTests.GetNativeOverlappedState_NullAsNativeOverlapped_ThrowsArgumentNullException

# NRE on BindHandle 
# https://github.com/mono/mono/issues/15314
-nomethod ThreadPoolBoundHandleTests.BindHandle_ZeroAsHandle_ThrowsArgumentException
-nomethod ThreadPoolBoundHandleTests.BindHandle_NullAsHandle_ThrowsArgumentNullException
-nomethod ThreadPoolBoundHandleTests.BindHandle_ValidHandle_ThrowsPlatformNotSupportedException

# Test not run
-nomethod ThreadPoolBoundHandleTests.PreAllocatedOverlapped_NullAsCallback_ThrowsArgumentNullException

####################################################################
##  System.Runtime.Extensions.Tests
####################################################################

# GC.GetGCMemoryInfo is not implemented
# https://github.com/mono/mono/issues/15236
-nomethod System.Tests.AppDomainTests.MonitoringIsEnabled

# Mono expands generic Types in stacktraces unlike the .NET Core (sounds more like a feature: https://gist.github.com/EgorBo/3abb37d2ff4fc904bc7472c62498f933)
# https://github.com/mono/mono/issues/15315
-nomethod System.Tests.EnvironmentStackTrace.StackTraceTest

# These events are not wired up in mono
-nomethod System.Tests.AppDomainTests.TypeResolve
-nomethod System.Tests.AppDomainTests.ResourceResolve
-nomethod System.Tests.AppDomainTests.AssemblyLoad
-nomethod System.Tests.AppDomainTests.FirstChanceException_Called
-nomethod System.Tests.AppDomainTests.AssemblyResolve_FirstChanceException
-nomethod System.Tests.AppDomainTests.AssemblyResolveInvalidAssemblyName

# AssemblyLoadContext.SetProfileOptimizationRoot is no-op (not implemented)
-nomethod System.Runtime.Tests.ProfileOptimizationTest.ProfileOptimization_CheckFileExists

####################################################################
##  System.Reflection.TypeExtensions.Tests
####################################################################

# Assertion difference.  Expects 2, but got 1
# https://github.com/mono/mono/issues/15316
-nomethod System.Reflection.Tests.ConstructorInfoInvokeArrayTests.Invoke_1DArrayConstructor

# Exception difference
# https://github.com/mono/mono/issues/15317
-nomethod System.Reflection.Tests.ConstructorInfoTests.Invoke_Invalid

# Large Array support
# https://github.com/mono/mono/issues/15318
-nomethod System.Reflection.Tests.ConstructorInfoInvokeArrayTests.Invoke_LargeDimensionalArrayConstructor

# Throws a lot of different exceptions
# https://github.com/mono/mono/issues/15319
-nomethod System.Reflection.Tests.PropertyInfoTests.GetGetMethod_GetSetMethod

# Extra methods 
# https://github.com/mono/mono/issues/15320
-nomethod System.Reflection.Tests.TypeTests.GetMethods

####################################################################
##  System.Reflection.Emit.Lightweight.Tests
####################################################################

# A different CreateDelegate issue
# https://github.com/mono/mono/issues/15321
-nomethod System.Reflection.Emit.Tests.DynamicMethodGetILGenerator1.GetILGenerator_Int_Module_CoreclrIgnoresSkipVisibility
-nomethod System.Reflection.Emit.Tests.DynamicMethodGetILGenerator1.GetILGenerator_Module_CoreclrIgnoresSkipVisibility
-nomethod System.Reflection.Emit.Tests.DynamicILInfoTests.GetTokenFor_IntGenerics_Success

# Need to implement System.Reflection.Emit.DynamicILInfo.SetLocalSignature(Byte[] localSignature)
-nomethod System.Reflection.Emit.Tests.DynamicILInfoTests.Test_TwoDimTest
-nomethod System.Reflection.Emit.Tests.DynamicILInfoTests.Test_GenericMethod
-nomethod System.Reflection.Emit.Tests.DynamicILInfoTests.GetTokenFor_CtorMethodAndField_Success
-nomethod System.Reflection.Emit.Tests.DynamicILInfoTests.GetTokenFor_String_Success
-nomethod System.Reflection.Emit.Tests.DynamicILInfoTests.GetTokenFor_StringGenerics_Success
-nomethod System.Reflection.Emit.Tests.DynamicILInfoTests.Test_CallGM
-nomethod System.Reflection.Emit.Tests.DynamicILInfoTests.GetTokenFor_Exception_Success
-nomethod System.Reflection.Emit.Tests.DynamicILInfoTests.GetTokenFor_DynamicMethod_Success

# Need to implement System.Reflection.Emit.DynamicILInfo.SetExceptions(Byte* exceptions, Int32 exceptionsSize)
-nomethod System.Reflection.Emit.Tests.DynamicILInfoTests.SetX_NullInput_ThrowsArgumentNullException
-nomethod System.Reflection.Emit.Tests.DynamicMethodctor1.InvalidOwner_ThrowsArgumentException

# Exception string is different (Expect System.String vs actual String)
# https://github.com/mono/mono/issues/15323
-nomethod System.Reflection.Emit.Tests.DynamicMethodToString.ToStringTest

# Expected: typeof(System.ArgumentOutOfRangeException)
# Actual:   typeof(System.OverflowException): Arithmetic operation resulted in an overflow.
# https://github.com/mono/mono/issues/15334
-nomethod System.Reflection.Emit.Tests.DynamicILInfoTests.SetX_NegativeInputSize_ThrowsArgumentOutOfRangeException

####################################################################
##  System.Runtime.Loader.Tests
####################################################################

# NOTE: Not run (relies on collectible ALCs)
-nomethod System.Runtime.Loader.Tests.ContextualReflectionTest.*

# relies on AssemblyLoadContext 
-nomethod System.Runtime.Loader.Tests.AssemblyLoadContextTest.GetLoadContextTest_ValidUserAssembly
-nomethod System.Runtime.Loader.Tests.AssemblyLoadContextTest.LoadAssemblyByPath_ValidUserAssembly
-nomethod System.Runtime.Loader.Tests.AssemblyLoadContextTest.Unsupported_FixedAddressValueType
-nomethod System.Runtime.Loader.Tests.AssemblyLoadContextTest.LoadAssemblyByStream_ValidUserAssembly
-nomethod System.Runtime.Loader.Tests.AssemblyLoadContextTest.LoadFromAssemblyName_ValidTrustedPlatformAssembly

# relies on collectible AssemblyLoadContext
-nomethod System.Runtime.Loader.Tests.AssemblyLoadContextTest.Unload_*
-nomethod System.Runtime.Loader.Tests.AssemblyLoadContextTest.Finalizer_CollectibleWithNoAssemblyLoaded
-nomethod System.Runtime.Loader.Tests.AssemblyLoadContextTest.PublicConstructor_Theory

####################################################################
##  System.Reflection.MetadataLoadContext.Tests
####################################################################

# https://github.com/mono/mono/issues/15340
-nomethod System.Reflection.Tests.CustomAttributeTests.TestDllImportPseudoCustomAttribute
-nomethod System.Reflection.Tests.CustomAttributeTests.TestMarshalAsPseudoCustomAttribute
-nomethod System.Reflection.Tests.ParameterTests.TestPseudoCustomAttributes
-nomethod System.Reflection.Tests.TypeTests.TestExplicitOffsetPseudoCustomAttribute

# Assertion failure: Expected: true, Actual: false
# https://github.com/mono/mono/issues/15344
-nomethod System.Reflection.Tests.TypeInvariants.TestInvariantCode

# System.TypeLoadException : Could not find type 'Typ\\W\[t\]S\+r\*n\&e\,haracters' in assembly ''.
# https://github.com/mono/mono/issues/15349
-nomethod System.Reflection.Tests.TypeTests.TypesWithStrangeCharacters

# flaky tests
-nomethod System.Reflection.Tests.TypeInfoDeclaredImplementedInterfacesTests.*

####################################################################
##  System.Utf8String.Experimental.Tests
####################################################################

# Experimental feature 
# Will be removed and we can skip for now.
-nomethod System.Tests.MemoryTests.*
-nomethod System.Tests.Utf8StringTests.*
-nomethod System.Tests.Utf8ExtensionsTests.*
-nomethod System.Tests.ReflectionTests.*
-nomethod System.Net.Http.Tests.Utf8StringContentTests.*

####################################################################
##  System.ComponentModel.Composition.Registration.Tests
####################################################################

# System.ComponentModel.Composition.Registration APIs are not supported on this platform.
-nomethod System.ComponentModel.Composition.Registration.Tests.RegistrationBuilderTests.*
-nomethod System.ComponentModel.Composition.Registration.Tests.PartBuilderUnitTests.*
-nomethod System.ComponentModel.Composition.Registration.Tests.PartBuilderOfTInheritanceTests.*
-nomethod System.ComponentModel.Composition.Registration.Tests.ExportBuilderUnitTests.*
-nomethod System.ComponentModel.Composition.Registration.Tests.RegistrationBuilderAttributedOverrideUnitTests.*
-nomethod System.ComponentModel.Composition.Registration.Tests.PartBuilderOfTTests.*
-nomethod System.ComponentModel.Composition.Registration.Tests.PartBuilderTests.*
-nomethod System.ComponentModel.Composition.Registration.Tests.ExportBuilderTests.*
-nomethod System.ComponentModel.Composition.Registration.Tests.ImportBuilderTests.*
-nomethod System.ComponentModel.Composition.Registration.Tests.RegistrationBuilderUnitTests.*
-nomethod System.ComponentModel.Composition.Registration.Tests.RegistrationBuilderExportFuncUnitTests.*
-nomethod System.ComponentModel.Composition.Registration.Tests.PartBuilderInterfaceTests.*
-nomethod System.ComponentModel.Composition.Registration.Tests.ExportInterfacesContractExclusionTests.*

####################################################################
##  System.Xml.Xsl.XslTransformApi.Tests
####################################################################

# Xml differences... Looks like the parsing isn't working
# https://github.com/mono/mono/issues/15353
-nomethod System.Xml.Tests.CXmlResolverTest.TC_AbsolutePath_Transform
-nomethod System.Xml.Tests.CTransformResolverTest.TC_AbsolutePath_Transform

####################################################################
##  System.Net.Requests.Tests
####################################################################

# hangs:
-nomethod System.Net.Tests.HttpWebRequestTest.HttpWebRequest_SetHostHeader_ContainsPortNumber

####################################################################
##  System.Security.Cryptography.X509Certificates.Tests
####################################################################

# Passes local, but leaving here because it may be flaky 
-nomethod System.Security.Cryptography.X509Certificates.Tests.DynamicChainTests.TestInvalidAia

# disabled in CoreCLR too
-noclass System.Security.Cryptography.X509Certificates.Tests.X509Certificate2UITests

-nomethod System.IO.Tests.File_Move_Tests.File_Move_From_Unwatched_To_Watched

# unxpected non-breaking space in strings (char(160) - char(32))
-nomethod DataContractJsonSerializerTests.DCJS_VerifyDateTimeForDateTimeFormat
-nomethod DataContractJsonSerializerTests.DCJS_VerifyDateTimeForFormatStringDCJsonSerSettings

# GetCustomAttribute should ignore NullableContextAttribute?
-nomethod System.Reflection.Tests.GetCustomAttributes_MemberInfo.GetCustomAttributeAll
-nomethod System.Tests.AttributeGetCustomAttributes.MultipleAttributesTest

# Unexpected IntPtr.Zero from Interop.Mmap
-nomethod System.IO.MemoryMappedFiles.Tests.MemoryMappedViewAccessorTests.ValidAccessLevelCombinations
-nomethod System.IO.MemoryMappedFiles.Tests.MemoryMappedViewStreamTests.ValidAccessLevelCombinations

# requires precise gc (to be ignored in dotnet/corefx, e.g. https://github.com/dotnet/corefx/pull/39176)
-nomethod System.IO.Tests.FileStream_Dispose.Dispose_CallsVirtualDispose_TrueArg
-nomethod System.Net.Sockets.Tests.DisposedSocket.NonDisposedSocket_SafeHandlesCollected
-nomethod System.Diagnostics.TraceSourceTests.SwitchClassTests.PruneTest