From d237ae4b2f44318fd74acae799b3bf54a5e0513c Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Thu, 15 Jan 2015 22:52:17 +0000 Subject: [PATCH] Fixed the regex test case after recent modifications to the "help" command output. llvm-svn: 226218 --- lldb/test/functionalities/command_regex/TestCommandRegex.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lldb/test/functionalities/command_regex/TestCommandRegex.py b/lldb/test/functionalities/command_regex/TestCommandRegex.py index 9571bb2eb56c..1cc5a4bb24e8 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")