summaryrefslogtreecommitdiffstats
path: root/lldb/test/foundation/TestObjCMethods.py
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-04-27 17:43:07 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-04-27 17:43:07 +0000
commitde90f1dd93f2f857629e684e51957fc949599bae (patch)
tree8b992599a7c0b345b0d1dfcb620616d4ebdcf3c5 /lldb/test/foundation/TestObjCMethods.py
parent71d3b895ba9f5cd970a1b7bd685c4482c03995f0 (diff)
downloadbcm5719-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.py4
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.
OpenPOWER on IntegriCloud