forked from OSchip/llvm-project
Make the negative test more robust in light of more than one lldb prompts being emitted
in one command invocation. llvm-svn: 130811
This commit is contained in:
parent
ed8a29b855
commit
b5672c504c
|
@ -73,10 +73,10 @@ class StopHookMechanismTestCase(TestBase):
|
|||
|
||||
# Now continue the inferior, we'll stop at another breakpoint which is outside the stop-hook range.
|
||||
child.sendline('process continue')
|
||||
child.expect_exact(prompt)
|
||||
child.expect_exact('// Another breakpoint which is outside of the stop-hook range.')
|
||||
#self.DebugPExpect(child)
|
||||
child.sendline('thread step-over')
|
||||
child.expect_exact(prompt)
|
||||
child.expect_exact('// Another breakpoint which is outside of the stop-hook range.')
|
||||
#self.DebugPExpect(child)
|
||||
# Verify that the 'Stop Hooks' mechanism is NOT BEING fired off.
|
||||
self.expect(child.before, exe=False, matching=False,
|
||||
|
|
Loading…
Reference in New Issue