Finish adding the actual stop reason as part of the assert message when asserting:

thread.GetStopReason() == lldb.eStopReasonBreakpoint

llvm-svn: 118713
This commit is contained in:
Johnny Chen 2010-11-10 20:30:37 +00:00
parent 4640a18cf4
commit e9ad7fecf0
4 changed files with 7 additions and 6 deletions

View File

@ -120,9 +120,10 @@ class ArrayTypesTestCase(TestBase):
"executable = a.out"])
# The stop reason of the thread should be breakpoint.
from lldbutil import StopReasonString
thread = self.process.GetThreadAtIndex(0)
self.assertTrue(thread.GetStopReason() == lldb.eStopReasonBreakpoint,
STOPPED_DUE_TO_BREAKPOINT)
STOPPED_DUE_TO_BREAKPOINT_WITH_STOP_REASON_AS % StopReasonString(thread.GetStopReason()))
# Sanity check the print representation of thread.
thr = repr(thread)

View File

@ -84,8 +84,6 @@ class BitfieldsTestCase(TestBase):
def bitfields_variable_python(self):
"""Use Python APIs to inspect a bitfields variable."""
from lldbutil import StopReasonString
exe = os.path.join(os.getcwd(), "a.out")
target = self.dbg.CreateTarget(exe)
@ -102,6 +100,7 @@ class BitfieldsTestCase(TestBase):
self.assertTrue(self.process.IsValid(), PROCESS_IS_VALID)
# The stop reason of the thread should be breakpoint.
from lldbutil import StopReasonString
thread = target.GetProcess().GetThreadAtIndex(0)
self.assertTrue(thread.GetStopReason() == lldb.eStopReasonBreakpoint,
STOPPED_DUE_TO_BREAKPOINT_WITH_STOP_REASON_AS % StopReasonString(thread.GetStopReason()))

View File

@ -130,10 +130,10 @@ class ClassTypesTestCase(TestBase):
lldbutil.StateTypeString(self.process.GetState()))
# The stop reason of the thread should be breakpoint.
from lldbutil import StopReasonString
thread = self.process.GetThreadAtIndex(0)
self.assertTrue(thread.GetStopReason() == lldb.eStopReasonBreakpoint,
STOPPED_DUE_TO_BREAKPOINT)
STOPPED_DUE_TO_BREAKPOINT_WITH_STOP_REASON_AS % StopReasonString(thread.GetStopReason()))
# The filename of frame #0 should be 'main.cpp' and the line number
# should be 93.

View File

@ -68,9 +68,10 @@ class HelloWorldTestCase(TestBase):
self.process = target.GetProcess()
self.assertTrue(self.process.IsValid(), PROCESS_IS_VALID)
from lldbutil import StopReasonString
thread = self.process.GetThreadAtIndex(0)
self.assertTrue(thread.GetStopReason() == lldb.eStopReasonBreakpoint,
STOPPED_DUE_TO_BREAKPOINT)
STOPPED_DUE_TO_BREAKPOINT_WITH_STOP_REASON_AS % StopReasonString(thread.GetStopReason()))
# The breakpoint should have a hit count of 1.
self.assertTrue(breakpoint.GetHitCount() == 1, BREAKPOINT_HIT_ONCE)