diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-09-27 08:18:38 +0000 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-09-27 08:18:38 +0000 |
commit | c4488a6e9db56b2a45a60f829428f14cfabf5791 (patch) | |
tree | 24596d87a35494b986b8850ab85f0a173f21bb0e /lldb/packages/Python/lldbsuite | |
parent | 362345769a36814f3f3bb9f711643aa05b6b5697 (diff) | |
download | bcm5719-llvm-c4488a6e9db56b2a45a60f829428f14cfabf5791.tar.gz bcm5719-llvm-c4488a6e9db56b2a45a60f829428f14cfabf5791.zip |
[lldb][NFC] Test CommandObjectMultiword functionality
A lot of commands are made up of CommandObjectMultiword with
subcommands. CommandObjectMultiword actually has some functionality
on its own that wasn't tested before.
llvm-svn: 373050
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/multiword-commands/TestMultiWordCommands.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/multiword-commands/TestMultiWordCommands.py b/lldb/packages/Python/lldbsuite/test/functionalities/multiword-commands/TestMultiWordCommands.py new file mode 100644 index 00000000000..12d572586c4 --- /dev/null +++ b/lldb/packages/Python/lldbsuite/test/functionalities/multiword-commands/TestMultiWordCommands.py @@ -0,0 +1,34 @@ +""" +Test multiword commands ('platform' in this case). +""" + +import lldb +from lldbsuite.test.decorators import * +from lldbsuite.test.lldbtest import * + +class MultiwordCommandsTestCase(TestBase): + + mydir = TestBase.compute_mydir(__file__) + + @no_debug_info_test + def test_ambiguous_subcommand(self): + self.expect("platform s", error=True, + substrs=["ambiguous command 'platform s'. Possible completions:", + "\tselect\n", + "\tshell\n", + "\tsettings\n"]) + + @no_debug_info_test + def test_empty_subcommand(self): + # FIXME: This has no error message. + self.expect("platform \"\"", error=True) + + @no_debug_info_test + def test_help(self): + # <multiword> help brings up help. + self.expect("platform help", + substrs=["Commands to manage and create platforms.", + "Syntax: platform [", + "The following subcommands are supported:", + "connect", + "Select the current platform"]) |