[Lldb-commits] [lldb] r373050 - [lldb][NFC] Test CommandObjectMultiword functionality
Raphael Isemann via lldb-commits
lldb-commits at lists.llvm.org
Fri Sep 27 01:18:38 PDT 2019
Author: teemperor
Date: Fri Sep 27 01:18:38 2019
New Revision: 373050
URL: http://llvm.org/viewvc/llvm-project?rev=373050&view=rev
Log:
[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.
Added:
lldb/trunk/packages/Python/lldbsuite/test/functionalities/multiword-commands/
lldb/trunk/packages/Python/lldbsuite/test/functionalities/multiword-commands/TestMultiWordCommands.py
Added: lldb/trunk/packages/Python/lldbsuite/test/functionalities/multiword-commands/TestMultiWordCommands.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/functionalities/multiword-commands/TestMultiWordCommands.py?rev=373050&view=auto
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/functionalities/multiword-commands/TestMultiWordCommands.py (added)
+++ lldb/trunk/packages/Python/lldbsuite/test/functionalities/multiword-commands/TestMultiWordCommands.py Fri Sep 27 01:18:38 2019
@@ -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"])
More information about the lldb-commits
mailing list