[Lldb-commits] [lldb] ae34257 - [lldb][lldb-dap][test] Skip logpoint test on Windows again

David Spickett via lldb-commits lldb-commits at lists.llvm.org
Thu Aug 29 01:33:41 PDT 2024


Author: David Spickett
Date: 2024-08-29T08:33:34Z
New Revision: ae34257e9015a366ea63cd461535b35bc9837c57

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

LOG: [lldb][lldb-dap][test] Skip logpoint test on Windows again

This one snuck into the previous patch. The test program needs
updating if it's ever going to work on Windows.

Added: 
    

Modified: 
    lldb/test/API/tools/lldb-dap/breakpoint/TestDAP_logpoints.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/tools/lldb-dap/breakpoint/TestDAP_logpoints.py b/lldb/test/API/tools/lldb-dap/breakpoint/TestDAP_logpoints.py
index 33e7dcbe1b3b2f..78ceb7971112e5 100644
--- a/lldb/test/API/tools/lldb-dap/breakpoint/TestDAP_logpoints.py
+++ b/lldb/test/API/tools/lldb-dap/breakpoint/TestDAP_logpoints.py
@@ -19,6 +19,7 @@ def setUp(self):
         self.main_basename = "main-copy.cpp"
         self.main_path = os.path.realpath(self.getBuildArtifact(self.main_basename))
 
+    @skipIfWindows
     def test_logmessage_basic(self):
         """Tests breakpoint logmessage basic functionality."""
         before_loop_line = line_number("main.cpp", "// before loop")


        


More information about the lldb-commits mailing list