Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Merge pull request #20501 from ViktorHofer/LazySerializationTests
Browse files Browse the repository at this point in the history
Disable lazy serialization tests on netcoreapp
  • Loading branch information
stephentoub authored May 31, 2017
2 parents da1699e + 266bb76 commit 654ca85
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/System.Runtime/tests/System/LazyTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ public static void Exceptions_Ctor_NotIdempotent(Lazy<ExceptionInCtor> x)
}

[Fact]
[ActiveIssue(19119, TargetFrameworkMonikers.Netcoreapp)]
public static void Serialization_ValueType()
{
Lazy<int> fortytwo = BinaryFormatterHelpers.Clone(new Lazy<int>(() => 42));
Expand All @@ -373,6 +374,7 @@ public static void Serialization_ValueType()
}

[Fact]
[ActiveIssue(19119, TargetFrameworkMonikers.Netcoreapp)]
public static void Serialization_RefType()
{
Lazy<string> fortytwo = BinaryFormatterHelpers.Clone(new Lazy<string>(() => "42"));
Expand Down

0 comments on commit 654ca85

Please sign in to comment.