[Lldb-commits] [lldb] [lldb][Windows] Fixed the API test breakpoint_with_realpath_and_source_map (PR #104918)
Dmitry Vasilyev via lldb-commits
lldb-commits at lists.llvm.org
Tue Aug 20 06:19:45 PDT 2024
https://github.com/slydiman updated https://github.com/llvm/llvm-project/pull/104918
>From dd5070e26b41f6022f09b797772378076348298b Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev <dvassiliev at accesssoftek.com>
Date: Tue, 20 Aug 2024 16:11:53 +0400
Subject: [PATCH] [lldb][Windows] Fixed the API test
breakpoint_with_realpath_and_source_map
This test is already disabled for Windows because of symlinks. Disable it for cross build on Windows host too.
---
.../breakpoint_with_realpath_and_source_map/TestBreakpoint.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/lldb/test/API/functionalities/breakpoint/breakpoint_with_realpath_and_source_map/TestBreakpoint.py b/lldb/test/API/functionalities/breakpoint/breakpoint_with_realpath_and_source_map/TestBreakpoint.py
index 5dc2af73f3647d..b95a97d9dae7b1 100644
--- a/lldb/test/API/functionalities/breakpoint/breakpoint_with_realpath_and_source_map/TestBreakpoint.py
+++ b/lldb/test/API/functionalities/breakpoint/breakpoint_with_realpath_and_source_map/TestBreakpoint.py
@@ -32,6 +32,7 @@ def buildAndCreateTarget(self):
self.assertTrue(target, VALID_TARGET)
@skipIf(oslist=["windows"])
+ @skipIf(hostoslist=["windows"])
def test_file_line_breakpoint_realpath_and_source_map(self):
"""Test file/line breakpoint with realpathing and source-mapping."""
self.buildAndCreateTarget()
More information about the lldb-commits
mailing list