Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 131c702

Browse files
stephentoubkrwq
authored andcommitted
Merge pull request #20501 from ViktorHofer/LazySerializationTests
Disable lazy serialization tests on netcoreapp
1 parent 9d286cc commit 131c702

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/System.Runtime/tests/System/LazyTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -365,6 +365,7 @@ public static void Exceptions_Ctor_NotIdempotent(Lazy<ExceptionInCtor> x)
365365
}
366366

367367
[Fact]
368+
[ActiveIssue(19119, TargetFrameworkMonikers.Netcoreapp)]
368369
public static void Serialization_ValueType()
369370
{
370371
Lazy<int> fortytwo = BinaryFormatterHelpers.Clone(new Lazy<int>(() => 42));
@@ -373,6 +374,7 @@ public static void Serialization_ValueType()
373374
}
374375

375376
[Fact]
377+
[ActiveIssue(19119, TargetFrameworkMonikers.Netcoreapp)]
376378
public static void Serialization_RefType()
377379
{
378380
Lazy<string> fortytwo = BinaryFormatterHelpers.Clone(new Lazy<string>(() => "42"));

0 commit comments

Comments
 (0)