summaryrefslogtreecommitdiffstats
path: root/lldb/test/bitfields/TestBitfields.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/bitfields/TestBitfields.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/bitfields/TestBitfields.py')
-rw-r--r--lldb/test/bitfields/TestBitfields.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/test/bitfields/TestBitfields.py b/lldb/test/bitfields/TestBitfields.py
index 3db3a1da54a..f99c6e6e3bf 100644
--- a/lldb/test/bitfields/TestBitfields.py
+++ b/lldb/test/bitfields/TestBitfields.py
@@ -100,9 +100,9 @@ class BitfieldsTestCase(TestBase):
# The stop reason of the thread should be breakpoint.
thread = target.GetProcess().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()))
# The breakpoint should have a hit count of 1.
self.assertTrue(breakpoint.GetHitCount() == 1, BREAKPOINT_HIT_ONCE)
OpenPOWER on IntegriCloud