From c16cb0ed11d6473192fb7dfc76245404a2e8b3ef Mon Sep 17 00:00:00 2001 From: imhameed Date: Wed, 4 Aug 2021 11:40:46 -0400 Subject: [PATCH] Minor runtime test cleanup (#56833) Removes stray debug logging and removes a redundant branch. See https://github.com/dotnet/runtime/pull/43954#discussion_r682420803 and https://github.com/dotnet/runtime/pull/43954#discussion_r682420941. --- src/tests/Common/Coreclr.TestWrapper/MobileAppHandler.cs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/tests/Common/Coreclr.TestWrapper/MobileAppHandler.cs b/src/tests/Common/Coreclr.TestWrapper/MobileAppHandler.cs index 7a58262..324edcc 100644 --- a/src/tests/Common/Coreclr.TestWrapper/MobileAppHandler.cs +++ b/src/tests/Common/Coreclr.TestWrapper/MobileAppHandler.cs @@ -81,11 +81,6 @@ namespace CoreclrTestLib } } - if (platform != "android") - { - cmdStr += " --target ios-simulator-64"; - } - using (Process process = new Process()) { if (OperatingSystem.IsWindows()) @@ -102,8 +97,6 @@ namespace CoreclrTestLib process.StartInfo.RedirectStandardOutput = true; process.StartInfo.RedirectStandardError = true; - outputWriter.WriteLine("XXXih: cmdStr = {0}", cmdStr); - errorWriter.WriteLine("XXXih: cmdStr = {0}", cmdStr); DateTime startTime = DateTime.Now; process.Start(); -- 2.7.4