diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-04-25 23:38:13 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-04-25 23:38:13 +0000 |
commit | d0fef81e38996317bb7a2ffa2e3ad54c5676f115 (patch) | |
tree | c033e247e8cbc774e1c85b12b33b6ade60d94f64 /lldb/test/cpp/dynamic-value/TestDynamicValue.py | |
parent | 24ac1599fc39f14a85bdab04b4657f3cc98271b8 (diff) | |
download | bcm5719-llvm-d0fef81e38996317bb7a2ffa2e3ad54c5676f115.tar.gz bcm5719-llvm-d0fef81e38996317bb7a2ffa2e3ad54c5676f115.zip |
For lldbutil.py, Change a bunch of function names to all lower case formats to be consistent.
And modify the test cases accordingly.
llvm-svn: 130174
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] |