diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2019-09-05 21:43:32 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2019-09-05 21:43:32 +0000 |
commit | f5687d7c1257a53b46045ebc725e0967def38a3d (patch) | |
tree | db16e67578b6ac34b022330c1ddddc01ff8273c0 /lldb/packages/Python/lldbsuite | |
parent | 3270941f1e7aa9e96f7806ff0306289f482147ce (diff) | |
download | bcm5719-llvm-f5687d7c1257a53b46045ebc725e0967def38a3d.tar.gz bcm5719-llvm-f5687d7c1257a53b46045ebc725e0967def38a3d.zip |
Remove `bugreport` command
The bugreport command exists to create domain-specific bug reports.
Currently it has one implementation for filing bugs on the unwinder. As
far as we can tell, it has never been of use. Although not exactly the
same as the reproducers, it's a bit confusing to have two parallel
command trees for (kind of) the same thing.
Differential revision: https://reviews.llvm.org/D65469
llvm-svn: 371132
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py b/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py index 537c447c07a..df975345c1c 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py @@ -363,7 +363,7 @@ class CommandLineCompletionTestCase(TestBase): """Test descriptions of top-level command completions""" self.check_completion_with_desc("", [ ["command", "Commands for managing custom LLDB commands."], - ["bugreport", "Commands for creating domain-specific bug reports."] + ["breakpoint", "Commands for operating on breakpoints (see 'help b' for shorthand.)"] ]) self.check_completion_with_desc("pl", [ |