Skip to content

Commit

Permalink
Minor runtime test cleanup (#56833)
Browse files Browse the repository at this point in the history
Removes stray debug logging and removes a redundant branch.

See #43954 (comment) and #43954 (comment).
  • Loading branch information
imhameed committed Aug 4, 2021
1 parent 39f14c5 commit c16cb0e
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/tests/Common/Coreclr.TestWrapper/MobileAppHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand All @@ -102,8 +97,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();

Expand Down

0 comments on commit c16cb0e

Please sign in to comment.