diff options
| author | Miro Bucko <mbucko@meta.com> | 2024-05-31 03:44:51 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-30 13:44:51 -0700 |
| commit | 493eefc93f2901dd987b8ff441004352b317cab9 (patch) | |
| tree | 75da06936386eb55fde7f13cdfcaa8d56a4a650e /lldb/test/API/python_api | |
| parent | 167cad531db897c708610447d2632f137931c4be (diff) | |
| download | llvm-493eefc93f2901dd987b8ff441004352b317cab9.zip llvm-493eefc93f2901dd987b8ff441004352b317cab9.tar.gz llvm-493eefc93f2901dd987b8ff441004352b317cab9.tar.bz2 | |
[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.
Diffstat (limited to 'lldb/test/API/python_api')
| -rw-r--r-- | lldb/test/API/python_api/address_range/TestAddressRange.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/API/python_api/address_range/TestAddressRange.py b/lldb/test/API/python_api/address_range/TestAddressRange.py index f878326..86ca4a6 100644 --- a/lldb/test/API/python_api/address_range/TestAddressRange.py +++ b/lldb/test/API/python_api/address_range/TestAddressRange.py @@ -191,7 +191,7 @@ class AddressRangeTestCase(TestBase): interp.HandleCommand(script, result, False) self.assertTrue(result.Succeeded(), "script command succeeded") # [0x1000-0x2000] // Resolved with target or addresses without sections - self.assertRegex(result.GetOutput(), "^\[0x[0-9a-f]+\-0x[0-9a-f]+\)$") + self.assertRegex(result.GetOutput(), "^\[0x[0-9a-f]+\-0x[0-9a-f]+\)") process.Kill() def test_address_range_print_no_section_resolved(self): |
