Changeset View
Changeset View
Standalone View
Standalone View
lldb/trunk/packages/Python/lldbsuite/test/help/TestHelp.py
Show First 20 Lines • Show All 131 Lines • ▼ Show 20 Lines | def test_help_image_du_sym_is_ambiguous(self): | ||||
'symfile', | 'symfile', | ||||
'symtab']) | 'symtab']) | ||||
@no_debug_info_test | @no_debug_info_test | ||||
def test_help_image_du_line_should_work(self): | def test_help_image_du_line_should_work(self): | ||||
"""Command 'help image du line' is not ambiguous and should work.""" | """Command 'help image du line' is not ambiguous and should work.""" | ||||
# 'image' is an alias for 'target modules'. | # 'image' is an alias for 'target modules'. | ||||
self.expect("help image du line", | self.expect("help image du line", | ||||
substrs = ['Dump the line table for one or more compilation units']) | substrs = ['Dump the line table for one or more files']) | ||||
@no_debug_info_test | @no_debug_info_test | ||||
def test_help_target_variable_syntax(self): | def test_help_target_variable_syntax(self): | ||||
"""Command 'help target variable' should display <variable-name> ...""" | """Command 'help target variable' should display <variable-name> ...""" | ||||
self.expect("help target variable", | self.expect("help target variable", | ||||
substrs = ['<variable-name> [<variable-name> [...]]']) | substrs = ['<variable-name> [<variable-name> [...]]']) | ||||
@no_debug_info_test | @no_debug_info_test | ||||
Show All 17 Lines |