summaryrefslogtreecommitdiffstats
path: root/lldb/test/functionalities/command_regex
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/functionalities/command_regex')
-rw-r--r--lldb/test/functionalities/command_regex/TestCommandRegex.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/functionalities/command_regex/TestCommandRegex.py b/lldb/test/functionalities/command_regex/TestCommandRegex.py
index 3cc34ac0ae0..c2fe66b1cbd 100644
--- a/lldb/test/functionalities/command_regex/TestCommandRegex.py
+++ b/lldb/test/functionalities/command_regex/TestCommandRegex.py
@@ -27,13 +27,13 @@ class CommandRegexTestCase(TestBase):
# Substitute 'Help!' for 'help' using the 'commands regex' mechanism.
child.expect_exact(prompt)
- child.sendline("command regex 'Help!'")
+ child.sendline("command regex 'Help__'")
child.expect_exact(regex_prompt)
child.sendline('s/^$/help/')
child.expect_exact(regex_prompt1)
child.sendline('')
# Help!
- child.sendline('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:')
OpenPOWER on IntegriCloud