Fixed the regex test case after recent modifications to the "help" command output.

<rdar://problem/18527567>

llvm-svn: 226218
This commit is contained in:
Greg Clayton 2015-01-15 22:52:17 +00:00
parent 7e0692b614
commit d237ae4b2f
1 changed files with 1 additions and 2 deletions

View File

@ -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")