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

via lldb-commits lldb-commits at lists.llvm.org
Tue Aug 20 06:25:40 PDT 2024


Author: Dmitry Vasilyev
Date: 2024-08-20T17:25:34+04:00
New Revision: fc044901a2b8ae277b62bdde9140917913bd1644

URL: https://github.com/llvm/llvm-project/commit/fc044901a2b8ae277b62bdde9140917913bd1644
DIFF: https://github.com/llvm/llvm-project/commit/fc044901a2b8ae277b62bdde9140917913bd1644.diff

LOG: [lldb][Windows] Fixed the API test breakpoint_with_realpath_and_source_map (#104918)

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

Added: 
    

Modified: 
    lldb/test/API/functionalities/breakpoint/breakpoint_with_realpath_and_source_map/TestBreakpoint.py

Removed: 
    


################################################################################
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