[Lldb-commits] [lldb] r226218 - Fixed the regex test case after recent modifications to the "help" command output.

Greg Clayton gclayton at apple.com
Thu Jan 15 14:52:17 PST 2015


Author: gclayton
Date: Thu Jan 15 16:52:17 2015
New Revision: 226218

URL: http://llvm.org/viewvc/llvm-project?rev=226218&view=rev
Log:
Fixed the regex test case after recent modifications to the "help" command output.

<rdar://problem/18527567>


Modified:
    lldb/trunk/test/functionalities/command_regex/TestCommandRegex.py

Modified: lldb/trunk/test/functionalities/command_regex/TestCommandRegex.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/command_regex/TestCommandRegex.py?rev=226218&r1=226217&r2=226218&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/command_regex/TestCommandRegex.py (original)
+++ lldb/trunk/test/functionalities/command_regex/TestCommandRegex.py Thu Jan 15 16:52:17 2015
@@ -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")





More information about the lldb-commits mailing list