<div dir="ltr">This isn't going to work either, because Windows doesn't the name= portion.  God I really hate these tests that do substring matching.<div><br></div><div>I guess there's no easy way to guarantee that the main.cpp:<line-number> is on the same frame as the breakpoint.  Can you change it to:</div><div><br></div><div>substrs = ['stopped',</div><div>    'main.cpp:{}'.format(self.mark3),</div><div>    'stop reason = breakpoint 1'</div><div>]</div></div><br><div class="gmail_quote"><div dir="ltr">On Tue, Jan 12, 2016 at 2:14 PM Siva Chandra <<a href="mailto:sivachandra@google.com">sivachandra@google.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">sivachandra created this revision.<br>
sivachandra added a reviewer: zturner.<br>
sivachandra added a subscriber: lldb-commits.<br>
<br>
<a href="http://reviews.llvm.org/D16125" rel="noreferrer" target="_blank">http://reviews.llvm.org/D16125</a><br>
<br>
Files:<br>
  packages/Python/lldbsuite/test/functionalities/thread/jump/TestThreadJump.py<br>
<br>
Index: packages/Python/lldbsuite/test/functionalities/thread/jump/TestThreadJump.py<br>
===================================================================<br>
--- packages/Python/lldbsuite/test/functionalities/thread/jump/TestThreadJump.py<br>
+++ packages/Python/lldbsuite/test/functionalities/thread/jump/TestThreadJump.py<br>
@@ -34,7 +34,7 @@<br>
         # The stop reason of the thread should be breakpoint 1.<br>
         self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT + " 1",<br>
             substrs = ['stopped',<br>
-                       'main.cpp:{}, stop reason = breakpoint 1'.format(self.mark3)])<br>
+                       "main.cpp:{0}, name = '{1}', stop reason = breakpoint 1".format(self.mark3, os.path.basename(exe))])<br>
<br>
         self.do_min_test(self.mark3, self.mark1, "i", "4"); # Try the int path, force it to return 'a'<br>
         self.do_min_test(self.mark3, self.mark2, "i", "5"); # Try the int path, force it to return 'b'<br>
<br>
<br>
</blockquote></div>