Slight changes to how to phrase the assert for Python API thread.GetStopReason().

llvm-svn: 118731
This commit is contained in:
Johnny Chen 2010-11-10 23:14:41 +00:00
parent e39a9fcc0e
commit 378ed7f3e7
4 changed files with 16 additions and 12 deletions

View File

@ -120,10 +120,11 @@ 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_WITH_STOP_REASON_AS % StopReasonString(thread.GetStopReason()))
if thread.GetStopReason() != lldb.eStopReasonBreakpoint:
from lldbutil import StopReasonString
self.fail(STOPPED_DUE_TO_BREAKPOINT_WITH_STOP_REASON_AS %
StopReasonString(thread.GetStopReason()))
# Sanity check the print representation of thread.
thr = repr(thread)

View File

@ -100,10 +100,11 @@ 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()))
if thread.GetStopReason() != lldb.eStopReasonBreakpoint:
from lldbutil import StopReasonString
self.fail(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)

View File

@ -130,10 +130,11 @@ 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_WITH_STOP_REASON_AS % StopReasonString(thread.GetStopReason()))
if thread.GetStopReason() != lldb.eStopReasonBreakpoint:
from lldbutil import StopReasonString
self.fail(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,10 +68,11 @@ 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_WITH_STOP_REASON_AS % StopReasonString(thread.GetStopReason()))
if thread.GetStopReason() != lldb.eStopReasonBreakpoint:
from lldbutil import StopReasonString
self.fail(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)