diff options
author | Johnny Chen <johnny.chen@apple.com> | 2010-11-10 20:30:37 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2010-11-10 20:30:37 +0000 |
commit | e9ad7fecf02868cd03ac51aef35374b0ce3fec1c (patch) | |
tree | 3884e294f0b98eb8dceaf9ab710f446411dd95df /lldb/test/bitfields/TestBitfields.py | |
parent | 4640a18cf45c532a371ac343286bd0760242455d (diff) | |
download | bcm5719-llvm-e9ad7fecf02868cd03ac51aef35374b0ce3fec1c.tar.gz bcm5719-llvm-e9ad7fecf02868cd03ac51aef35374b0ce3fec1c.zip |
Finish adding the actual stop reason as part of the assert message when asserting:
thread.GetStopReason() == lldb.eStopReasonBreakpoint
llvm-svn: 118713
Diffstat (limited to 'lldb/test/bitfields/TestBitfields.py')
-rw-r--r-- | lldb/test/bitfields/TestBitfields.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/test/bitfields/TestBitfields.py b/lldb/test/bitfields/TestBitfields.py index 8adfeb181a2..9c6aa225d7d 100644 --- a/lldb/test/bitfields/TestBitfields.py +++ b/lldb/test/bitfields/TestBitfields.py @@ -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())) |