Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2017-04-13 15:20:10 +0300
committerStephen Toub <stoub@microsoft.com>2017-04-13 15:20:10 +0300
commit931a09a1c827dac3667af901ab39c668011aacc1 (patch)
tree218ffb187daee558cb61bc9a3f4b1180ca44ff88 /src/System.Diagnostics.Process
parent16d21600f1037efdfce0903b8e08d9b46c7c9d1f (diff)
Disable newly added process tests
Diffstat (limited to 'src/System.Diagnostics.Process')
-rw-r--r--src/System.Diagnostics.Process/tests/ProcessTests.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/System.Diagnostics.Process/tests/ProcessTests.cs b/src/System.Diagnostics.Process/tests/ProcessTests.cs
index 64023f5c89..2780de7e1a 100644
--- a/src/System.Diagnostics.Process/tests/ProcessTests.cs
+++ b/src/System.Diagnostics.Process/tests/ProcessTests.cs
@@ -824,6 +824,7 @@ namespace System.Diagnostics.Tests
Assert.All(processes, process => Assert.Equal(machineName, process.MachineName));
}
+ [ActiveIssue(18324)]
[Theory]
[MemberData(nameof(MachineName_Remote_TestData))]
[PlatformSpecific(TestPlatforms.Windows)] // Accessing processes on remote machines is only supported on Windows.
@@ -891,6 +892,7 @@ namespace System.Diagnostics.Tests
return true;
}
+ [ActiveIssue(18324)]
[PlatformSpecific(TestPlatforms.Windows)] // Behavior differs on Windows and Unix
[ConditionalTheory(nameof(ProcessPeformanceCounterEnabled))]
[SkipOnTargetFramework(TargetFrameworkMonikers.UapAot, "https://github.com/dotnet/corefx/issues/18212")]