diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2011-04-27 17:43:07 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2011-04-27 17:43:07 +0000 |
| commit | de90f1dd93f2f857629e684e51957fc949599bae (patch) | |
| tree | 8b992599a7c0b345b0d1dfcb620616d4ebdcf3c5 /lldb/test/foundation/TestObjCMethods.py | |
| parent | 71d3b895ba9f5cd970a1b7bd685c4482c03995f0 (diff) | |
| download | bcm5719-llvm-de90f1dd93f2f857629e684e51957fc949599bae.tar.gz bcm5719-llvm-de90f1dd93f2f857629e684e51957fc949599bae.zip | |
Change the rest of lldbutil.py's function names to all lower case formats to be consistent.
And modify the test cases accordingly.
llvm-svn: 130314
Diffstat (limited to 'lldb/test/foundation/TestObjCMethods.py')
| -rw-r--r-- | lldb/test/foundation/TestObjCMethods.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/foundation/TestObjCMethods.py b/lldb/test/foundation/TestObjCMethods.py index 9485cb57327..9bbf1c08882 100644 --- a/lldb/test/foundation/TestObjCMethods.py +++ b/lldb/test/foundation/TestObjCMethods.py @@ -220,9 +220,9 @@ class FoundationTestCase(TestBase): # The stop reason of the thread should be breakpoint. thread = self.process.GetThreadAtIndex(0) if thread.GetStopReason() != lldb.eStopReasonBreakpoint: - from lldbutil import StopReasonString + from lldbutil import stop_reason_to_str self.fail(STOPPED_DUE_TO_BREAKPOINT_WITH_STOP_REASON_AS % - StopReasonString(thread.GetStopReason())) + stop_reason_to_str(thread.GetStopReason())) # Make sure we stopped at the first breakpoint. |

