forked from OSchip/llvm-project
Commands are -d to break modify, not -C.
The auto-continue test was using the new (better) name for providing commands (-C) but I haven't checked in that change yet. Put the test back to the old way for now. llvm-svn: 313221
This commit is contained in:
parent
5622381add
commit
3568319679
|
@ -73,7 +73,7 @@ class BreakpointAutoContinue(TestBase):
|
|||
self.assertEqual(bkpt.GetHitCount(), 2, "Should have run through the breakpoint twice")
|
||||
|
||||
def auto_continue_with_command(self):
|
||||
bpno = self.make_target_and_bkpt("-N BKPT -C 'break modify --auto-continue 0 BKPT'")
|
||||
bpno = self.make_target_and_bkpt("-N BKPT -d 'break modify --auto-continue 0 BKPT'")
|
||||
process = self.launch_it(lldb.eStateStopped)
|
||||
state = process.GetState()
|
||||
self.assertEqual(state, lldb.eStateStopped, "Process should be stopped")
|
||||
|
|
Loading…
Reference in New Issue