From b0289fe19c9d3c1a4bc49cb589b7be3349c77eea Mon Sep 17 00:00:00 2001 From: Ludovic Henry Date: Wed, 10 May 2017 14:53:03 -0400 Subject: [PATCH] [process] Disable tests that do not work on mobile (#4598) --- mcs/class/System/Test/System.Diagnostics/ProcessTest.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/mcs/class/System/Test/System.Diagnostics/ProcessTest.cs b/mcs/class/System/Test/System.Diagnostics/ProcessTest.cs index 8871d4aa1ea..2d321b814a1 100644 --- a/mcs/class/System/Test/System.Diagnostics/ProcessTest.cs +++ b/mcs/class/System/Test/System.Diagnostics/ProcessTest.cs @@ -1116,6 +1116,7 @@ namespace MonoTests.System.Diagnostics #endif // MONO_FEATURE_PROCESS_START [Test] + [NUnit.Framework.Category ("MobileNotWorking")] public void GetProcessesByName() { // This should return Process[0] or a Process[] with all the "foo" programs running @@ -1133,7 +1134,7 @@ namespace MonoTests.System.Diagnostics } [Test] - [NUnit.Framework.Category ("AndroidNotWorking")] //SELinux makes probing the parent process impossible + [NUnit.Framework.Category ("MobileNotWorking")] public void NonChildProcessWaitForExit () { if (!RunningOnUnix) @@ -1157,7 +1158,7 @@ namespace MonoTests.System.Diagnostics } [Test] - [NUnit.Framework.Category ("AndroidNotWorking")] //SELinux makes probing the parent process impossible + [NUnit.Framework.Category ("MobileNotWorking")] public void NonChildProcessName () { if (!RunningOnUnix) @@ -1172,7 +1173,7 @@ namespace MonoTests.System.Diagnostics } [Test] - [NUnit.Framework.Category ("AndroidNotWorking")] //SELinux makes probing the parent process impossible + [NUnit.Framework.Category ("MobileNotWorking")] public void NonChildProcessId () { if (!RunningOnUnix) -- 2.25.1