[Lldb-commits] [lldb] [LLDB] Fix tests on Windows (PR #131600)
Aleksandr Korepanov via lldb-commits
lldb-commits at lists.llvm.org
Tue Mar 18 04:21:16 PDT 2025
================
@@ -201,8 +201,15 @@ def test_watch_address_with_invalid_watch_size(self):
value.GetValueAsUnsigned(), 365, wp_opts, error
)
self.assertFalse(watchpoint)
- self.expect(
- error.GetCString(),
- exe=False,
- substrs=["Setting one of the watchpoint resources failed"],
- )
+ if self.getPlatform() == "windows":
----------------
AlexK0 wrote:
Fixed
https://github.com/llvm/llvm-project/pull/131600
More information about the lldb-commits
mailing list