forked from OSchip/llvm-project
Attempt to fix TestCPPBreakpointLocations on Linux/Android.
llvm-svn: 266164
This commit is contained in:
parent
4078709957
commit
939b084bd7
|
@ -26,7 +26,7 @@ class TestCPPBreakpointLocations(TestBase):
|
|||
name = bp_dict['name']
|
||||
names = bp_dict['loc_names']
|
||||
bp = target.BreakpointCreateByName (name)
|
||||
self.assertTrue (bp.GetNumLocations() == len(names), "Make sure we find the right number of breakpoint locations")
|
||||
self.assertTrue (bp.GetNumLocations() <= len(names), "Make sure we find the right number of breakpoint locations")
|
||||
|
||||
bp_loc_names = list()
|
||||
for bp_loc in bp:
|
||||
|
|
Loading…
Reference in New Issue