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
Original file line number Diff line number Diff line change
Expand Up @@ -1383,7 +1383,6 @@ public async Task JsonIgnoreAttribute_UnsupportedCollection()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/63802", TargetFrameworkMonikers.NetFramework)]
public async Task JsonIgnoreAttribute_UnsupportedBigInteger()
{
string json = @"{""MyBigInteger"":1}";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ public static async Task SupportsBoxedRootLevelValues()
}

[ConditionalFact(typeof(RemoteExecutor), nameof(RemoteExecutor.IsSupported))]
[ActiveIssue("https://github.com/dotnet/runtime/issues/63802", TargetFrameworkMonikers.NetFramework)]
public static void Converters_AndTypeInfoCreator_NotRooted_WhenMetadataNotPresent()
{
RemoteExecutor.Invoke(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -300,12 +300,10 @@ public override async Task ClassWithIgnoredAndPrivateMembers_DoesNotIncludeIgnor
[JsonSerializable(typeof(ClassWithNewSlotAttributedDecimalProperty))]
[JsonSerializable(typeof(ClassWithNewSlotDecimalProperty))]
[JsonSerializable(typeof(LargeStructWithValueAndReferenceTypes))]
#if !NETFRAMEWORK
[JsonSerializable(typeof(ClassWithUnsupportedBigInteger))]
[JsonSerializable(typeof(WrapperForClassWithUnsupportedBigInteger))]
[JsonSerializable(typeof(ClassWithIgnoredUnsupportedBigInteger))]
[JsonSerializable(typeof(WrapperForClassWithIgnoredUnsupportedBigInteger))]
#endif
[JsonSerializable(typeof(ClassWithThingsToIgnore))]
[JsonSerializable(typeof(ClassWithMixedPropertyAccessors_PropertyAttributes))]
[JsonSerializable(typeof(ClassWithPropertyPolicyConflictWhichThrows))]
Expand Down Expand Up @@ -557,12 +555,10 @@ public void PublicContextAndJsonSerializerOptions()
[JsonSerializable(typeof(ClassWithNewSlotAttributedDecimalProperty))]
[JsonSerializable(typeof(ClassWithNewSlotDecimalProperty))]
[JsonSerializable(typeof(LargeStructWithValueAndReferenceTypes))]
#if !NETFRAMEWORK
[JsonSerializable(typeof(ClassWithUnsupportedBigInteger))]
[JsonSerializable(typeof(WrapperForClassWithUnsupportedBigInteger))]
[JsonSerializable(typeof(ClassWithIgnoredUnsupportedBigInteger))]
[JsonSerializable(typeof(WrapperForClassWithIgnoredUnsupportedBigInteger))]
#endif
[JsonSerializable(typeof(ClassWithThingsToIgnore))]
[JsonSerializable(typeof(ClassWithMixedPropertyAccessors_PropertyAttributes))]
[JsonSerializable(typeof(ClassWithPropertyPolicyConflictWhichThrows))]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ public void UsePrivates()
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/63802", TargetFrameworkMonikers.NetFramework)]
[SkipOnTargetFramework(TargetFrameworkMonikers.NetFramework)] // Netfx lacks IsExternalInit class needed for records
public void Record()
{
// Compile the referenced assembly first.
Expand Down Expand Up @@ -428,7 +428,7 @@ public record AppRecord(int Id)
}

[Fact]
[ActiveIssue("https://github.com/dotnet/runtime/issues/63802", TargetFrameworkMonikers.NetFramework)]
[SkipOnTargetFramework(TargetFrameworkMonikers.NetFramework)] // Netfx lacks IsExternalInit class needed for records
public void RecordInExternalAssembly()
{
// Compile the referenced assembly first.
Expand Down