diff options
author | Jim Ingham <jingham@apple.com> | 2017-09-14 00:27:36 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2017-09-14 00:27:36 +0000 |
commit | 3568319679b295696fd1b76b9c4ec206496a0c8c (patch) | |
tree | a7c05b8bca31f22f1273bcf0987ffdc6e1e575e8 /lldb/packages/Python/lldbsuite/test | |
parent | 5622381add2948e3baa2822ac02d4184b904f494 (diff) | |
download | bcm5719-llvm-3568319679b295696fd1b76b9c4ec206496a0c8c.tar.gz bcm5719-llvm-3568319679b295696fd1b76b9c4ec206496a0c8c.zip |
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
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/TestBreakpointAutoContinue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/TestBreakpointAutoContinue.py b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/TestBreakpointAutoContinue.py index 9630e39e014..b1b37ae3817 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/TestBreakpointAutoContinue.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/TestBreakpointAutoContinue.py @@ -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") |