Modify lldbutil.in_range(symbol, section) to deal with the symbol whose

end address is an LLDB_INVALID_ADDRESS.  Modify the test case to dump
all the symbols in all the sections.

llvm-svn: 140710
This commit is contained in:
Johnny Chen
2011-09-28 18:33:50 +00:00
parent 933d51682f
commit c0f53df8ff
2 changed files with 16 additions and 5 deletions

View File

@@ -43,8 +43,12 @@ class ModuleAndSectionAPIsTestCase(TestBase):
INDENT2 = INDENT * 2
for sec in exe_module.section_iter():
print sec
if sec.GetName() == "__TEXT":
print INDENT + "Number of subsections: %d" % sec.GetNumSubSections()
print INDENT + "Number of subsections: %d" % sec.GetNumSubSections()
if sec.GetNumSubSections() == 0:
for sym in symbol_iter(exe_module, sec):
print INDENT + repr(sym)
print INDENT + "symbol type: %s" % symbol_type_to_str(sym.GetType())
else:
for subsec in sec:
print INDENT + repr(subsec)
# Now print the symbols belonging to the subsection....