diff options
Diffstat (limited to 'gnu/llvm/lldb/packages/Python/lldbsuite/test/functionalities/multiword-commands')
-rw-r--r-- | gnu/llvm/lldb/packages/Python/lldbsuite/test/functionalities/multiword-commands/TestMultiWordCommands.py | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/llvm/lldb/packages/Python/lldbsuite/test/functionalities/multiword-commands/TestMultiWordCommands.py b/gnu/llvm/lldb/packages/Python/lldbsuite/test/functionalities/multiword-commands/TestMultiWordCommands.py new file mode 100644 index 00000000000..80b144f58d5 --- /dev/null +++ b/gnu/llvm/lldb/packages/Python/lldbsuite/test/functionalities/multiword-commands/TestMultiWordCommands.py @@ -0,0 +1,33 @@ +""" +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): + self.expect("platform \"\"", error=True, substrs=["Need to specify a non-empty subcommand."]) + + @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"]) |