diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/python_api/module_section')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/python_api/module_section/TestModuleAndSection.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/module_section/TestModuleAndSection.py b/lldb/packages/Python/lldbsuite/test/python_api/module_section/TestModuleAndSection.py index 65b159974c0..09dfcc5895a 100644 --- a/lldb/packages/Python/lldbsuite/test/python_api/module_section/TestModuleAndSection.py +++ b/lldb/packages/Python/lldbsuite/test/python_api/module_section/TestModuleAndSection.py @@ -45,6 +45,7 @@ class ModuleAndSectionAPIsTestCase(TestBase): print("Exe module: %s" % str(exe_module)) print("Number of sections: %d" % exe_module.GetNumSections()) + print("Number of symbols: %d" % len(exe_module)) INDENT = ' ' * 4 INDENT2 = INDENT * 2 for sec in exe_module.section_iter(): |