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

Commit 67c0962

Browse files
author
Pallavi Taneja
committed
Enable System.IO.Pipes test disabled against Issue#1840
System.IO.Pipes dependended on some new APISets introduced in WIndows10. Since the OS was still under development, it was not available on all the images, making the tests flaky. Now that the things are stable, enabling the tests again.
1 parent 4c423dc commit 67c0962

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/System.IO.Pipes/tests/AnonymousPipesSimpleTest.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,6 @@ public static async Task ServerPInvokeChecks()
199199
}
200200

201201
[Fact]
202-
[ActiveIssue(1840, PlatformID.Windows)]
203202
public static async Task ClientPInvokeChecks()
204203
{
205204
using (AnonymousPipeServerStream server = new AnonymousPipeServerStream(PipeDirection.In, System.IO.HandleInheritability.None, 4096))

src/System.IO.Pipes/tests/NamedPipesSimpleTest.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,6 @@ public static async Task ClientPInvokeChecks()
355355
}
356356

357357
[Fact]
358-
[ActiveIssue(1840)]
359358
[PlatformSpecific(PlatformID.Windows)]
360359
public static void ClientServerMessages()
361360
{
@@ -407,7 +406,6 @@ public static void ClientServerMessages()
407406
}
408407

409408
[Fact]
410-
[ActiveIssue(1840, PlatformID.Windows)]
411409
public static async Task ServerCloneTests()
412410
{
413411
const string pipeName = "fooclone";
@@ -439,7 +437,6 @@ public static async Task ServerCloneTests()
439437
}
440438

441439
[Fact]
442-
[ActiveIssue(1840, PlatformID.Windows)]
443440
public static async Task ClientCloneTests()
444441
{
445442
const string pipeName = "fooClientclone";

0 commit comments

Comments
 (0)