Skip to content

Commit 717717b

Browse files
committed
[lldb][NFC] Merge multiple TestApropos.py
That's cleaner and makes lldb-dotest no longer fail due to conflicting names. llvm-svn: 369530
1 parent ed41307 commit 717717b

File tree

2 files changed

+10
-26
lines changed

2 files changed

+10
-26
lines changed

lldb/packages/Python/lldbsuite/test/functionalities/apropos/TestApropos.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,13 @@ def test_apropos(self):
1717
substrs=[' must be called with exactly one argument'])
1818
self.expect("apropos ''", error=True,
1919
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

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)