diff options
| author | Greg Clayton <gclayton@apple.com> | 2015-01-15 22:52:17 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2015-01-15 22:52:17 +0000 |
| commit | d237ae4b2f44318fd74acae799b3bf54a5e0513c (patch) | |
| tree | 82f7e86934d691dc5ed74f9fd2b7e72816d924ee /lldb/test/functionalities/command_regex | |
| parent | 7e0692b6149f3a6f9f2e78111f8d8ee13fbafd86 (diff) | |
| download | bcm5719-llvm-d237ae4b2f44318fd74acae799b3bf54a5e0513c.tar.gz bcm5719-llvm-d237ae4b2f44318fd74acae799b3bf54a5e0513c.zip | |
Fixed the regex test case after recent modifications to the "help" command output.
<rdar://problem/18527567>
llvm-svn: 226218
Diffstat (limited to 'lldb/test/functionalities/command_regex')
| -rw-r--r-- | lldb/test/functionalities/command_regex/TestCommandRegex.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/test/functionalities/command_regex/TestCommandRegex.py b/lldb/test/functionalities/command_regex/TestCommandRegex.py index 9571bb2eb56..1cc5a4bb24e 100644 --- a/lldb/test/functionalities/command_regex/TestCommandRegex.py +++ b/lldb/test/functionalities/command_regex/TestCommandRegex.py @@ -36,8 +36,7 @@ class CommandRegexTestCase(TestBase): # Help! child.sendline('Help__') # If we see the familiar 'help' output, the test is done. - child.expect('The following is a list of built-in, permanent debugger commands:') - + child.expect('Debugger commands:') # Try and incorrectly remove "Help__" using "command unalias" and verify we fail child.sendline('command unalias Help__') child.expect_exact("error: 'Help__' is not an alias, it is a debugger command which can be removed using the 'command delete' command") |

