Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions eng/testing/ILLink.Descriptor.xunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,10 @@
<namespace fullname="Xunit" />
<namespace fullname="Xunit.Sdk" />
</assembly>
<assembly fullname="xunit.assert">
<type fullname="Xunit.Sdk.AssertEqualityComparer`1">
<method signature="System.Boolean CompareTypedSets(System.Collections.IEnumerable,System.Collections.IEnumerable)" />
</type>
</assembly>
<assembly fullname="xunit.runner.utility.netcoreapp10" />
</linker>
Original file line number Diff line number Diff line change
Expand Up @@ -1501,7 +1501,6 @@ public void NonValidated_SetMultipleValuesOnSingleValueHeader_AllHeaderValuesRet
}
}

[ActiveIssue("https://github.com/dotnet/runtime/issues/53647", TestPlatforms.Browser)]
[Fact]
public void NonValidated_ValidAndInvalidValues_DictionaryMembersWork()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3002,7 +3002,6 @@ public void TransformStrStrResolver2(XslInputType xslInputType, ReaderType reade
}

//[Variation("Pass XmlUrlResolver, load style sheet with document function, should resolve during transform", Param = "xmlResolver_document_function.txt")]
[ActiveIssue("https://github.com/dotnet/runtime/issues/51911", typeof(PlatformDetection), nameof(PlatformDetection.IsBuiltWithAggressiveTrimming), nameof(PlatformDetection.IsBrowser))]
[InlineData("xmlResolver_document_function.txt", XslInputType.Reader, ReaderType.XmlValidatingReader)]
[InlineData("xmlResolver_document_function.txt", XslInputType.URI, ReaderType.XmlValidatingReader)]
[InlineData("xmlResolver_document_function.txt", XslInputType.Navigator, ReaderType.XmlValidatingReader)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,14 @@ namespace System.Runtime.InteropServices.Tests
{
public class IDispatchImplAttributeTests
{
private const string TypeName = "System.Runtime.InteropServices.IDispatchImplAttribute";
private const string ValueName = "Value";

[Theory]
[ActiveIssue("https://github.com/dotnet/runtime/issues/50717", typeof(PlatformDetection), nameof(PlatformDetection.IsBuiltWithAggressiveTrimming), nameof(PlatformDetection.IsBrowser))]
[InlineData(-1)]
[InlineData(0)]
[InlineData(2)]
public void Ctor_ImplTypeShort(short implType)
{
Type type = typeof(HandleCollector).Assembly.GetType(TypeName);
PropertyInfo valueProperty = type.GetProperty(ValueName);
Type type = Type.GetType("System.Runtime.InteropServices.IDispatchImplAttribute, System.Runtime.InteropServices");
PropertyInfo valueProperty = type.GetProperty("Value");
Assert.NotNull(type);
Assert.NotNull(valueProperty);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,6 @@ public static void WritePrimitiveQueueT()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/50721", typeof(PlatformDetection), nameof(PlatformDetection.IsBuiltWithAggressiveTrimming), nameof(PlatformDetection.IsBrowser))]
public static void WriteHashSetTOfHashSetT()
{
HashSet<HashSet<int>> input = new HashSet<HashSet<int>>(new List<HashSet<int>>
Expand Down