diff options
Diffstat (limited to 'lldb/test/cpp/dynamic-value/TestDynamicValue.py')
-rw-r--r-- | lldb/test/cpp/dynamic-value/TestDynamicValue.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/test/cpp/dynamic-value/TestDynamicValue.py b/lldb/test/cpp/dynamic-value/TestDynamicValue.py index 69a0d559d50..93a47d5008c 100644 --- a/lldb/test/cpp/dynamic-value/TestDynamicValue.py +++ b/lldb/test/cpp/dynamic-value/TestDynamicValue.py @@ -119,7 +119,7 @@ class DynamicValueTestCase(TestBase): self.assertTrue(self.process.GetState() == lldb.eStateStopped, PROCESS_STOPPED) - threads = lldbutil.GetThreadsStoppedAtBreakpoint (self.process, first_call_bpt) + threads = lldbutil.get_threads_stopped_at_breakpoint (self.process, first_call_bpt) self.assertTrue (len(threads) == 1) thread = threads[0] @@ -141,7 +141,7 @@ class DynamicValueTestCase(TestBase): # Okay now run to doSomething: - threads = lldbutil.ContinueToBreakpoint (self.process, do_something_bpt) + threads = lldbutil.continue_to_breakpoint (self.process, do_something_bpt) self.assertTrue (len(threads) == 1) thread = threads[0] @@ -194,7 +194,7 @@ class DynamicValueTestCase(TestBase): # Okay, now continue again, and when we hit the second breakpoint in main - threads = lldbutil.ContinueToBreakpoint (self.process, second_call_bpt) + threads = lldbutil.continue_to_breakpoint (self.process, second_call_bpt) self.assertTrue (len(threads) == 1) thread = threads[0] @@ -206,7 +206,7 @@ class DynamicValueTestCase(TestBase): # Finally continue to doSomething again, and make sure we get the right value for anotherA, # which this time around is just an "A". - threads = lldbutil.ContinueToBreakpoint (self.process, do_something_bpt) + threads = lldbutil.continue_to_breakpoint (self.process, do_something_bpt) self.assertTrue(len(threads) == 1) thread = threads[0] |