[Lldb-commits] [PATCH] Fix ConvenienceVariablesCase.test_with_dsym_and_run_command test after r227285

Ilia K ki.stfu at gmail.com
Fri Feb 6 10:13:44 PST 2015


REPOSITORY
  rL LLVM

http://reviews.llvm.org/D7464

Files:
  lldb/trunk/test/functionalities/embedded_interpreter/TestConvenienceVariables.py

Index: lldb/trunk/test/functionalities/embedded_interpreter/TestConvenienceVariables.py
===================================================================
--- lldb/trunk/test/functionalities/embedded_interpreter/TestConvenienceVariables.py
+++ lldb/trunk/test/functionalities/embedded_interpreter/TestConvenienceVariables.py
@@ -80,12 +80,12 @@
         child.sendline('print lldb.thread')
         child.expect_exact(python_prompt)
         self.expect(child.before, exe=False,
-            patterns = ['SBThread: tid = 0x[0-9a-f]+'])
+            patterns = ['thread #1: tid = 0x[0-9a-f]+, 0x[0-9a-f]+ a\.out`main\(argc=1, argv=0x[0-9a-f]+\) \+ \d+ at main\.c:%d, queue = \'.+\', stop reason = breakpoint 1\.1' % self.line])
 
         child.sendline('print lldb.frame')
         child.expect_exact(python_prompt)
         self.expect(child.before, exe=False,
-            substrs = ['frame #0', 'main.c:%d' % self.line])
+            patterns = ['frame #0: 0x[0-9a-f]+ a\.out`main\(argc=1, argv=0x[0-9a-f]+\) \+ \d+ at main\.c:%d' % self.line])
 
 
 if __name__ == '__main__':

EMAIL PREFERENCES
  http://reviews.llvm.org/settings/panel/emailpreferences/
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D7464.19497.patch
Type: text/x-patch
Size: 1081 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150206/b2709591/attachment.bin>


More information about the lldb-commits mailing list