Skip to content

Commit

Permalink
[TestThreadJump] Adjust match sub-string after recent change.
Browse files Browse the repository at this point in the history
Reviewers: zturner

Subscribers: zturner, lldb-commits

Differential Revision: http://reviews.llvm.org/D16125

llvm-svn: 257531
  • Loading branch information
Siva Chandra committed Jan 12, 2016
1 parent 29bfa89 commit b4f94aa
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -33,8 +33,7 @@ def test(self):

# The stop reason of the thread should be breakpoint 1.
self.expect("thread list", STOPPED_DUE_TO_BREAKPOINT + " 1",
substrs = ['stopped',
'main.cpp:{}, stop reason = breakpoint 1'.format(self.mark3)])
substrs=['stopped', 'main.cpp:{}'.format(self.mark3), 'stop reason = breakpoint 1'])

self.do_min_test(self.mark3, self.mark1, "i", "4"); # Try the int path, force it to return 'a'
self.do_min_test(self.mark3, self.mark2, "i", "5"); # Try the int path, force it to return 'b'
Expand Down

0 comments on commit b4f94aa

Please sign in to comment.