From 21f1a2bb132b86d93de964d46dcc33401c875448 Mon Sep 17 00:00:00 2001 From: Ankit Jain Date: Tue, 10 May 2022 00:53:14 -0400 Subject: [PATCH] Reenable `System.Runtime.Serialization.Xml.Tests` (#68921) * Reenable `System.Runtime.Serialization.Xml.Tests` This was disabled due to https://github.com/dotnet/runtime/issues/59926, which was then tracked by https://github.com/dotnet/runtime/issues/61061 . The stack overflow is due to one specific test though, and the rest of the tests can be enabled if we skip this one - `DCS_DeeplyLinkedData`. * Disable the test with `SkipOnPlatform` instead, for wasm, as it is .. unlikely to be fixed (- vargaz). --- .../tests/DataContractSerializer.cs | 1 + src/libraries/tests.proj | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libraries/System.Runtime.Serialization.Xml/tests/DataContractSerializer.cs b/src/libraries/System.Runtime.Serialization.Xml/tests/DataContractSerializer.cs index 6ab67b426a35b..4691273cb1dd2 100644 --- a/src/libraries/System.Runtime.Serialization.Xml/tests/DataContractSerializer.cs +++ b/src/libraries/System.Runtime.Serialization.Xml/tests/DataContractSerializer.cs @@ -4256,6 +4256,7 @@ public static void DCS_TypeWithPrimitiveKnownTypes() } [ActiveIssue("https://github.com/dotnet/runtime/issues/1417", TestPlatforms.OSX)] + [SkipOnPlatform(TestPlatforms.Browser, "Causes a stack overflow")] [Fact] public static void DCS_DeeplyLinkedData() { diff --git a/src/libraries/tests.proj b/src/libraries/tests.proj index 9bb500957f564..1b1444e636c90 100644 --- a/src/libraries/tests.proj +++ b/src/libraries/tests.proj @@ -333,8 +333,6 @@ - -