1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
|
"""
Test thread step-in, step-over and step-out work with the "Avoid no debug" option.
"""
import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
class StepAvoidsNoDebugTestCase(TestBase):
mydir = TestBase.compute_mydir(__file__)
@add_test_categories(['pyapi'])
def test_step_out_with_python(self):
"""Test stepping out using avoid-no-debug with dsyms."""
self.build()
self.get_to_starting_point()
self.do_step_out_past_nodebug()
@add_test_categories(['pyapi'])
@decorators.expectedFailureAll(
compiler="gcc", bugnumber="llvm.org/pr28549")
@decorators.expectedFailureAll(
compiler="clang",
compiler_version=[
">=",
"3.9"],
archs=["i386"],
bugnumber="llvm.org/pr28549")
def test_step_over_with_python(self):
"""Test stepping over using avoid-no-debug with dwarf."""
self.build()
self.get_to_starting_point()
self.do_step_over_past_nodebug()
@add_test_categories(['pyapi'])
@decorators.expectedFailureAll(
compiler="gcc", bugnumber="llvm.org/pr28549")
@decorators.expectedFailureAll(
compiler="clang",
compiler_version=[
">=",
"3.9"],
archs=["i386"],
bugnumber="llvm.org/pr28549")
@expectedFailureAll(archs=["arm64"], bugnumber="<rdar://problem/34026777>") # lldb doesn't step past last source line in function on arm64
@expectedFailureAll(archs=["aarch64"], oslist=["linux"],
bugnumber="llvm.org/pr44057")
def test_step_in_with_python(self):
"""Test stepping in using avoid-no-debug with dwarf."""
self.build()
self.get_to_starting_point()
self.do_step_in_past_nodebug()
def setUp(self):
TestBase.setUp(self)
self.main_source = "with-debug.c"
self.main_source_spec = lldb.SBFileSpec("with-debug.c")
self.dbg.HandleCommand(
"settings set target.process.thread.step-out-avoid-nodebug true")
def tearDown(self):
self.dbg.HandleCommand(
"settings set target.process.thread.step-out-avoid-nodebug false")
TestBase.tearDown(self)
def hit_correct_line(self, pattern):
target_line = line_number(self.main_source, pattern)
self.assertTrue(
target_line != 0,
"Could not find source pattern " +
pattern)
cur_line = self.thread.frames[0].GetLineEntry().GetLine()
self.assertTrue(
cur_line == target_line,
"Stepped to line %d instead of expected %d with pattern '%s'." %
(cur_line,
target_line,
pattern))
def hit_correct_function(self, pattern):
name = self.thread.frames[0].GetFunctionName()
self.assertTrue(
pattern in name, "Got to '%s' not the expected function '%s'." %
(name, pattern))
def get_to_starting_point(self):
exe = self.getBuildArtifact("a.out")
error = lldb.SBError()
self.target = self.dbg.CreateTarget(exe)
self.assertTrue(self.target, VALID_TARGET)
inner_bkpt = self.target.BreakpointCreateBySourceRegex(
"Stop here and step out of me", self.main_source_spec)
self.assertTrue(inner_bkpt, VALID_BREAKPOINT)
# Now launch the process, and do not stop at entry point.
self.process = self.target.LaunchSimple(
None, None, self.get_process_working_directory())
self.assertTrue(self.process, PROCESS_IS_VALID)
# Now finish, and make sure the return value is correct.
threads = lldbutil.get_threads_stopped_at_breakpoint(
self.process, inner_bkpt)
self.assertEquals(len(threads), 1, "Stopped at inner breakpoint.")
self.thread = threads[0]
def do_step_out_past_nodebug(self):
# The first step out takes us to the called_from_nodebug frame, just to make sure setting
# step-out-avoid-nodebug doesn't change the behavior in frames with
# debug info.
self.thread.StepOut()
self.hit_correct_line(
"intermediate_return_value = called_from_nodebug_actual(some_value)")
self.thread.StepOut()
self.hit_correct_line(
"int return_value = no_debug_caller(5, called_from_nodebug)")
def do_step_over_past_nodebug(self):
self.thread.StepOver()
self.hit_correct_line(
"intermediate_return_value = called_from_nodebug_actual(some_value)")
self.thread.StepOver()
self.hit_correct_line("return intermediate_return_value")
self.thread.StepOver()
# Note, lldb doesn't follow gdb's distinction between "step-out" and "step-over/step-in"
# when exiting a frame. In all cases we leave the pc at the point where we exited the
# frame. In gdb, step-over/step-in move to the end of the line they stepped out to.
# If we ever change this we will need to fix this test.
self.hit_correct_line(
"int return_value = no_debug_caller(5, called_from_nodebug)")
def do_step_in_past_nodebug(self):
self.thread.StepInto()
self.hit_correct_line(
"intermediate_return_value = called_from_nodebug_actual(some_value)")
self.thread.StepInto()
self.hit_correct_line("return intermediate_return_value")
self.thread.StepInto()
# Note, lldb doesn't follow gdb's distinction between "step-out" and "step-over/step-in"
# when exiting a frame. In all cases we leave the pc at the point where we exited the
# frame. In gdb, step-over/step-in move to the end of the line they stepped out to.
# If we ever change this we will need to fix this test.
self.hit_correct_line(
"int return_value = no_debug_caller(5, called_from_nodebug)")
|