We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc96a82 commit e3645fdCopy full SHA for e3645fd
lldb/test/API/functionalities/type_get_module/TestTypeGetModule.py
@@ -67,7 +67,7 @@ def test(self):
67
exe_module = self.find_module(target, 'a.out')
68
69
num_comp_units = exe_module.GetNumCompileUnits()
70
- self.assertEqual(num_comp_units, 3)
+ self.assertGreaterEqual(num_comp_units, 3)
71
72
comp_unit = self.find_comp_unit(exe_module, 'compile_unit1.c')
73
cu_type = self.find_type(comp_unit.GetTypes(), 'compile_unit1_type')
0 commit comments