diff --git a/tests/Mono.Android-Tests/Mono.Android-Tests/Xamarin.Android.RuntimeTests/NUnitInstrumentation.cs b/tests/Mono.Android-Tests/Mono.Android-Tests/Xamarin.Android.RuntimeTests/NUnitInstrumentation.cs index dd519c2c610..7e216b8c0c6 100644 --- a/tests/Mono.Android-Tests/Mono.Android-Tests/Xamarin.Android.RuntimeTests/NUnitInstrumentation.cs +++ b/tests/Mono.Android-Tests/Mono.Android-Tests/Xamarin.Android.RuntimeTests/NUnitInstrumentation.cs @@ -31,17 +31,15 @@ protected NUnitInstrumentation(IntPtr handle, JniHandleOwnership transfer) // trimmable typemap. We don't control that assembly, so they must be // excluded by name here. ExcludedTestNames = new [] { - // [JniAddNativeMethodRegistrationAttribute] is not supported by design under - // the trimmable typemap. This Java.Interop-Tests fixture uses that attribute + // Known limitation: [JniAddNativeMethodRegistrationAttribute] is not + // supported by design under the trimmable typemap. This Java.Interop-Tests + // fixture uses that attribute // to register native callbacks on a hand-written Java peer (an obsolete code // path whose primary consumer, jnimarshalmethod-gen, was removed in // dotnet/java-interop#1405). The trimmable typemap generator emits XA4251 // when it encounters the attribute and instructs users to either avoid it or // switch off the trimmable typemap. See https://github.com/dotnet/android/issues/11170. "Java.InteropTests.InvokeVirtualFromConstructorTests", - - // Global ref leak when inflating custom views - "Xamarin.Android.RuntimeTests.CustomWidgetTests.InflateCustomView_ShouldNotLeakGlobalRefs", }; } }