From: imhameed Date: Wed, 4 Aug 2021 15:40:46 +0000 (-0400) Subject: Minor runtime test cleanup (#56833) X-Git-Tag: accepted/tizen/unified/20220110.054933~656 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c16cb0ed11d6473192fb7dfc76245404a2e8b3ef;p=platform%2Fupstream%2Fdotnet%2Fruntime.git 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. --- 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();