[Lldb-commits] [lldb] [lldb][Windows] Fixed the API test breakpoint_with_realpath_and_source_map (PR #104918)

via lldb-commits lldb-commits at lists.llvm.org
Tue Aug 20 05:14:17 PDT 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-lldb

Author: Dmitry Vasilyev (slydiman)

<details>
<summary>Changes</summary>

This test is already disabled for Windows because of symlinks. Disable it for cross build on Windows host too.

---
Full diff: https://github.com/llvm/llvm-project/pull/104918.diff


1 Files Affected:

- (modified) lldb/test/API/functionalities/breakpoint/breakpoint_with_realpath_and_source_map/TestBreakpoint.py (+1) 


``````````diff
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..d31df52c3b338e 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()

``````````

</details>


https://github.com/llvm/llvm-project/pull/104918


More information about the lldb-commits mailing list