diff options
author | Enrico Granata <egranata@apple.com> | 2016-03-23 01:21:55 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2016-03-23 01:21:55 +0000 |
commit | d033e1cef5516d77f3712dd6d826153101c91507 (patch) | |
tree | 278dbe77addd6730b25dae0e89fa7dcbeb1ffdcf /lldb/packages/Python/lldbsuite | |
parent | 1a911e204d4a9258d11ba6f61fd698f1a0a8a7d2 (diff) | |
download | bcm5719-llvm-d033e1cef5516d77f3712dd6d826153101c91507.tar.gz bcm5719-llvm-d033e1cef5516d77f3712dd6d826153101c91507.zip |
Change 'apropos' such that it doesn't look into the "long help/syntax" strings for commands
This solves issues such as 'apropos foo' returning valid matches just because syntax examples happen to use 'foo' as a placeholder token
Fixes rdar://9043025
llvm-svn: 264123
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/multidebugger_commands/TestMultipleDebuggersCommands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/multidebugger_commands/TestMultipleDebuggersCommands.py b/lldb/packages/Python/lldbsuite/test/functionalities/multidebugger_commands/TestMultipleDebuggersCommands.py index a9b78069c3c..7d959ec504c 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/multidebugger_commands/TestMultipleDebuggersCommands.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/multidebugger_commands/TestMultipleDebuggersCommands.py @@ -20,7 +20,7 @@ class MultipleDebuggersCommandsTestCase(TestBase): def test_multipledebuggers_commands(self): """Test that commands do not try and hold on to stale CommandInterpreters in a multiple debuggers scenario""" source_init_files = False - magic_text = "The following built-in commands may relate to 'env'" + magic_text = "The following commands may relate to 'env'" debugger_1 = lldb.SBDebugger.Create(source_init_files) interpreter_1 = debugger_1.GetCommandInterpreter() |