From 545f5eb873d094f95b8ae75007e115f74b21978a Mon Sep 17 00:00:00 2001 From: Stephen Toub Date: Thu, 20 Dec 2018 14:44:37 -0500 Subject: [PATCH] Change ExecutorTests to use a command available on all Unixes (dotnet/corefx#34185) Commit migrated from https://github.com/dotnet/corefx/commit/c8239903b8597614c1b0327b60fca401d2bd6273 --- .../System.CodeDom/tests/System/CodeDom/Compiler/ExecutorTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libraries/System.CodeDom/tests/System/CodeDom/Compiler/ExecutorTests.cs b/src/libraries/System.CodeDom/tests/System/CodeDom/Compiler/ExecutorTests.cs index 4bd032e..b766a20 100644 --- a/src/libraries/System.CodeDom/tests/System/CodeDom/Compiler/ExecutorTests.cs +++ b/src/libraries/System.CodeDom/tests/System/CodeDom/Compiler/ExecutorTests.cs @@ -11,7 +11,7 @@ namespace System.CodeDom.Compiler.Tests { public class ExecutorTests : RemoteExecutorTestBase { - private static readonly string s_cmd = PlatformDetection.IsWindows ? "ipconfig" : "ifconfig"; // arbitrary commands to validate output + private static readonly string s_cmd = PlatformDetection.IsWindows ? "ipconfig" : "ps"; // arbitrary commands to validate output [SkipOnTargetFramework(~TargetFrameworkMonikers.Netcoreapp, "Not supported on .NET Core")] [Fact] -- 2.7.4