Skip to content

Commit 493eefc

Browse files
authored
[lldb][test] Fix failing test TestAddressRange.py (#93871)
Test llvm-project/lldb/test/API/python_api/address_range/TestAddressRange.py is failing on Windows due adding a carriage return character at the end of line. Original PR is #93836.
1 parent 167cad5 commit 493eefc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/test/API/python_api/address_range/TestAddressRange.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def test_address_range_print_resolved(self):
191191
interp.HandleCommand(script, result, False)
192192
self.assertTrue(result.Succeeded(), "script command succeeded")
193193
# [0x1000-0x2000] // Resolved with target or addresses without sections
194-
self.assertRegex(result.GetOutput(), "^\[0x[0-9a-f]+\-0x[0-9a-f]+\)$")
194+
self.assertRegex(result.GetOutput(), "^\[0x[0-9a-f]+\-0x[0-9a-f]+\)")
195195
process.Kill()
196196

197197
def test_address_range_print_no_section_resolved(self):

0 commit comments

Comments
 (0)