From: Krzysztof Wicher Date: Fri, 29 Jul 2022 13:23:45 +0000 (+0200) Subject: re-enable tests for 66421 (#73052) X-Git-Tag: accepted/tizen/unified/riscv/20231226.055536~7450 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=20b42d582956965a97376da96e709d1074d51f36;p=platform%2Fupstream%2Fdotnet%2Fruntime.git re-enable tests for 66421 (#73052) --- diff --git a/src/libraries/System.Text.Json/tests/Common/ReferenceHandlerTests/ReferenceHandlerTests.IgnoreCycles.cs b/src/libraries/System.Text.Json/tests/Common/ReferenceHandlerTests/ReferenceHandlerTests.IgnoreCycles.cs index 3a692ee..9e613a0 100644 --- a/src/libraries/System.Text.Json/tests/Common/ReferenceHandlerTests/ReferenceHandlerTests.IgnoreCycles.cs +++ b/src/libraries/System.Text.Json/tests/Common/ReferenceHandlerTests/ReferenceHandlerTests.IgnoreCycles.cs @@ -134,9 +134,6 @@ namespace System.Text.Json.Serialization.Tests } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task IgnoreCycles_OnRecursiveDictionary() { var root = new RecursiveDictionary(); @@ -183,9 +180,6 @@ namespace System.Text.Json.Serialization.Tests } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task IgnoreCycles_OnRecursiveList() { var root = new RecursiveList(); @@ -240,9 +234,6 @@ namespace System.Text.Json.Serialization.Tests } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task IgnoreCycles_DoesNotSupportPreserveSemantics() { // Object @@ -279,9 +270,6 @@ namespace System.Text.Json.Serialization.Tests } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task IgnoreCycles_DoesNotSupportPreserveSemantics_Polymorphic() { // Object diff --git a/src/libraries/System.Text.Json/tests/Common/ReferenceHandlerTests/ReferenceHandlerTests.cs b/src/libraries/System.Text.Json/tests/Common/ReferenceHandlerTests/ReferenceHandlerTests.cs index 562b92f..34e2e15 100644 --- a/src/libraries/System.Text.Json/tests/Common/ReferenceHandlerTests/ReferenceHandlerTests.cs +++ b/src/libraries/System.Text.Json/tests/Common/ReferenceHandlerTests/ReferenceHandlerTests.cs @@ -242,9 +242,6 @@ namespace System.Text.Json.Serialization.Tests public class DictionaryWithGenericCycle : Dictionary { } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task DictionaryLoop() { DictionaryWithGenericCycle root = new DictionaryWithGenericCycle(); @@ -261,9 +258,6 @@ namespace System.Text.Json.Serialization.Tests } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task DictionaryPreserveDuplicateDictionaries() { DictionaryWithGenericCycle root = new DictionaryWithGenericCycle(); @@ -298,9 +292,6 @@ namespace System.Text.Json.Serialization.Tests public class DictionaryWithGenericCycleWithinList : Dictionary> { } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task DictionaryArrayLoop() { DictionaryWithGenericCycleWithinList root = new DictionaryWithGenericCycleWithinList(); @@ -316,9 +307,6 @@ namespace System.Text.Json.Serialization.Tests } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task DictionaryPreserveDuplicateArrays() { DictionaryWithGenericCycleWithinList root = new DictionaryWithGenericCycleWithinList(); @@ -449,9 +437,6 @@ namespace System.Text.Json.Serialization.Tests public class ListWithGenericCycle : List { } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task ArrayLoop() { ListWithGenericCycle root = new ListWithGenericCycle(); @@ -518,9 +503,6 @@ namespace System.Text.Json.Serialization.Tests public class ListWithGenericCycleWithinDictionary : List> { } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task ArrayDictionaryLoop() { ListWithGenericCycleWithinDictionary root = new ListWithGenericCycleWithinDictionary(); @@ -536,9 +518,6 @@ namespace System.Text.Json.Serialization.Tests } [Fact] -#if BUILDING_SOURCE_GENERATOR_TESTS - [ActiveIssue("https://github.com/dotnet/runtime/issues/66421")] -#endif public async Task ArrayPreserveDuplicateDictionaries() { ListWithGenericCycleWithinDictionary root = new ListWithGenericCycleWithinDictionary