This is an archive of the discontinued LLVM Phabricator instance.

Fix double stdout/stderr output from CLI commands in MI mode (MI)
ClosedPublic

Authored by ki.stfu on Apr 25 2015, 10:49 PM.

Details

Summary

This patch fixes stdout/stderr output that printed twice for CLI commands:
was:

(gdb)
target create ~/p/hello
Current executable set to '~/p/hello' (x86_64).
Current executable set to '~/p/hello' (x86_64).
^done
(gdb)

now:

(gdb)
target create ~/p/hello
Current executable set to '~/p/hello' (x86_64).
^done
(gdb)

Diff Detail

Event Timeline

ki.stfu updated this revision to Diff 24436.Apr 25 2015, 10:49 PM
ki.stfu retitled this revision from to Fix double stdout/stderr output from CLI commands in MI mode (MI).
ki.stfu updated this object.
ki.stfu edited the test plan for this revision. (Show Details)
ki.stfu added a reviewer: abidh.
ki.stfu added subscribers: abidh, Unknown Object (MLST).
abidh accepted this revision.Apr 27 2015, 2:06 AM
abidh edited edge metadata.
This revision is now accepted and ready to land.Apr 27 2015, 2:06 AM
ki.stfu closed this revision.Apr 27 2015, 3:11 AM