From c9d3985086b4e47ef794a2f77da335c24a2e0131 Mon Sep 17 00:00:00 2001 From: Imran Hameed Date: Wed, 4 Aug 2021 08:46:54 -0400 Subject: [PATCH 1/2] Remove stray debug logging --- src/tests/Common/Coreclr.TestWrapper/MobileAppHandler.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/tests/Common/Coreclr.TestWrapper/MobileAppHandler.cs b/src/tests/Common/Coreclr.TestWrapper/MobileAppHandler.cs index 7a58262a95420..acc7219fbc221 100644 --- a/src/tests/Common/Coreclr.TestWrapper/MobileAppHandler.cs +++ b/src/tests/Common/Coreclr.TestWrapper/MobileAppHandler.cs @@ -102,8 +102,6 @@ private static int HandleMobileApp(string action, string platform, string catego 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(); From eb662553d0c3068f9c10ff6cce101a7ce1cc2d1f Mon Sep 17 00:00:00 2001 From: Imran Hameed Date: Wed, 4 Aug 2021 08:48:21 -0400 Subject: [PATCH 2/2] Merge redundant branch --- src/tests/Common/Coreclr.TestWrapper/MobileAppHandler.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/tests/Common/Coreclr.TestWrapper/MobileAppHandler.cs b/src/tests/Common/Coreclr.TestWrapper/MobileAppHandler.cs index acc7219fbc221..324edcce76fa1 100644 --- a/src/tests/Common/Coreclr.TestWrapper/MobileAppHandler.cs +++ b/src/tests/Common/Coreclr.TestWrapper/MobileAppHandler.cs @@ -81,11 +81,6 @@ private static int HandleMobileApp(string action, string platform, string catego } } - if (platform != "android") - { - cmdStr += " --target ios-simulator-64"; - } - using (Process process = new Process()) { if (OperatingSystem.IsWindows())