We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed41307 commit 717717bCopy full SHA for 717717b
lldb/packages/Python/lldbsuite/test/functionalities/apropos/TestApropos.py
@@ -17,3 +17,13 @@ def test_apropos(self):
17
substrs=[' must be called with exactly one argument'])
18
self.expect("apropos ''", error=True,
19
substrs=['\'\' is not a valid search word'])
20
+
21
+ @no_debug_info_test
22
+ def test_apropos_variable(self):
23
+ """Test that 'apropos variable' prints the fully qualified command name"""
24
+ self.expect(
25
+ 'apropos variable',
26
+ substrs=[
27
+ 'frame variable',
28
+ 'target variable',
29
+ 'watchpoint set variable'])
lldb/packages/Python/lldbsuite/test/help/TestApropos.py
0 commit comments