diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2011-10-31 22:22:06 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2011-10-31 22:22:06 +0000 |
| commit | 8e9383d69c96e72e6fb30d72e8c35543cc1b5949 (patch) | |
| tree | aa2259dd46d400e6d7bfedf5ca642a00bc496ca6 /lldb/test/functionalities/command_regex | |
| parent | fc8feb8137872d70d87f566888a099185e1cb3df (diff) | |
| download | bcm5719-llvm-8e9383d69c96e72e6fb30d72e8c35543cc1b5949.tar.gz bcm5719-llvm-8e9383d69c96e72e6fb30d72e8c35543cc1b5949.zip | |
Revert 143359 and modify the test case to not include non-valid c identifier character.
llvm-svn: 143372
Diffstat (limited to 'lldb/test/functionalities/command_regex')
| -rw-r--r-- | lldb/test/functionalities/command_regex/TestCommandRegex.py | 4 |
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:') |

