diff options
author | Sean Callanan <scallanan@apple.com> | 2014-10-06 17:58:15 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2014-10-06 17:58:15 +0000 |
commit | e6553d83aafe7856dec08c11f2021d71166cd5df (patch) | |
tree | 2fbfb884adbfa4e51fb6c98db81276813998ca2a /lldb/test/functionalities/command_script/TestCommandScript.py | |
parent | 6ff5f2e13bfd6e824b919e039c88dd6fb7ee4df8 (diff) | |
download | bcm5719-llvm-e6553d83aafe7856dec08c11f2021d71166cd5df.tar.gz bcm5719-llvm-e6553d83aafe7856dec08c11f2021d71166cd5df.zip |
Made TestCommandScript more robust against new
lines at arbitrary points.
llvm-svn: 219133
Diffstat (limited to 'lldb/test/functionalities/command_script/TestCommandScript.py')
-rw-r--r-- | lldb/test/functionalities/command_script/TestCommandScript.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/functionalities/command_script/TestCommandScript.py b/lldb/test/functionalities/command_script/TestCommandScript.py index 27ce4a7c6f1..9c1183aaa13 100644 --- a/lldb/test/functionalities/command_script/TestCommandScript.py +++ b/lldb/test/functionalities/command_script/TestCommandScript.py @@ -86,8 +86,8 @@ class CmdPythonTestCase(TestBase): 'For more information run']) self.expect("help targetname", - substrs = ['This command takes','\'raw\' input', - 'quote stuff']) + substrs = ['This', 'command', 'takes', '\'raw\'', 'input', + 'quote', 'stuff']) self.expect("longwait", substrs = ['Done; if you saw the delays I am doing OK']) |