Skip to content

Commit

Permalink
Merge pull request #1291 from microsoft/main
Browse files Browse the repository at this point in the history
Merge 'main' into 'release_mdd'
  • Loading branch information
WardenGnaw authored Mar 12, 2022
2 parents 8950830 + d2c322f commit 560b24a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/MICore/Debugger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1253,10 +1253,10 @@ public void ProcessStdOutLine(string line)
{
WaitingOperationDescriptor waitingOperation;
if (_waitingOperations.TryGetValue(id, out waitingOperation) &&
!waitingOperation.EchoReceived &&
line == waitingOperation.Command)
{
// This is just the echo. Ignore.
// Sometimes with lldb we are seeing 2 command echos
waitingOperation.EchoReceived = true;
return;
}
Expand All @@ -1267,6 +1267,7 @@ public void ProcessStdOutLine(string line)
switch (c)
{
case '~':
case '@':
OnDebuggeeOutput(noprefix); // Console stream
break;
case '^':
Expand Down

0 comments on commit 560b24a

Please sign in to comment.