[Lldb-commits] [lldb] r219133 - Made TestCommandScript more robust against new

Sean Callanan scallanan at apple.com
Mon Oct 6 10:58:15 PDT 2014


Author: spyffe
Date: Mon Oct  6 12:58:15 2014
New Revision: 219133

URL: http://llvm.org/viewvc/llvm-project?rev=219133&view=rev
Log:
Made TestCommandScript more robust against new
lines at arbitrary points.

Modified:
    lldb/trunk/test/functionalities/command_script/TestCommandScript.py

Modified: lldb/trunk/test/functionalities/command_script/TestCommandScript.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/functionalities/command_script/TestCommandScript.py?rev=219133&r1=219132&r2=219133&view=diff
==============================================================================
--- lldb/trunk/test/functionalities/command_script/TestCommandScript.py (original)
+++ lldb/trunk/test/functionalities/command_script/TestCommandScript.py Mon Oct  6 12:58:15 2014
@@ -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'])





More information about the lldb-commits mailing list