diff options
author | Hafiz Abid Qadeer <hafiz_abid@mentor.com> | 2017-01-05 13:23:47 +0000 |
---|---|---|
committer | Hafiz Abid Qadeer <hafiz_abid@mentor.com> | 2017-01-05 13:23:47 +0000 |
commit | 5e9bfc671bf24e58b239dd993149b66aada7cf4c (patch) | |
tree | 683e2fb290de778c83b01830c2fadcf6fe1936fe /lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py | |
parent | 763f1c453b59970c76c93f919b1514ab5c533c70 (diff) | |
download | bcm5719-llvm-5e9bfc671bf24e58b239dd993149b66aada7cf4c.tar.gz bcm5719-llvm-5e9bfc671bf24e58b239dd993149b66aada7cf4c.zip |
[lldb-mi] Fix implementation for a few mi commands
Summary:
Some of the mi commands implemented in lldb-mi are incomplete/not confirming to the spec.
- `gdb-show` and `gdb-set` doesn't support getting/setting `disassembly-flavor`
- `environment-cd` should also change the working directory for inferior
- debugger CLI output should be printed as console-stream-output record, rather than being dumped directly
to stdout
- `target-select` should provide inner error message in mi response
Related bug report:
- https://llvm.org/bugs/show_bug.cgi?id=28026
- https://llvm.org/bugs/show_bug.cgi?id=28718
- https://llvm.org/bugs/show_bug.cgi?id=30265
Reviewers: ki.stfu, abidh
Subscribers: abidh, ki.stfu, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D24711
llvm-svn: 291104
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py b/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py index 02059080f30..8e45c95927b 100644 --- a/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py +++ b/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py @@ -97,6 +97,7 @@ class MiSyntaxTestCase(lldbmi_testcase.MiTestCaseBase): # Run all commands simultaneously self.runCmd("-unknown-command") + self.runCmd("-interpreter-exec command help") self.runCmd("-file-exec-and-symbols %s" % self.myexe) self.runCmd("-break-insert -f main") self.runCmd("-gdb-set target-async off") |