[Lldb-commits] [lldb] 80c1e40 - [lldb] Skip TestBytecode tests on Windows (#197955)

via lldb-commits lldb-commits at lists.llvm.org
Fri May 15 09:27:07 PDT 2026


Author: Dmitry Vasilyev
Date: 2026-05-15T20:27:02+04:00
New Revision: 80c1e40b745a2f9ed84b2a695d2fb1beb0f0f7cc

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

LOG: [lldb] Skip TestBytecode tests on Windows (#197955)

This patch must fix broken tests after #197808 on Windows (the lldb-x86_64-win buildbot).

Added: 
    

Modified: 
    lldb/test/API/functionalities/data-formatter/bytecode-summary/TestBytecodeSummary.py
    lldb/test/API/functionalities/data-formatter/bytecode-synthetic/TestBytecodeSynthetic.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/functionalities/data-formatter/bytecode-summary/TestBytecodeSummary.py b/lldb/test/API/functionalities/data-formatter/bytecode-summary/TestBytecodeSummary.py
index c32a4517b2b82..43a7e1abc3b0b 100644
--- a/lldb/test/API/functionalities/data-formatter/bytecode-summary/TestBytecodeSummary.py
+++ b/lldb/test/API/functionalities/data-formatter/bytecode-summary/TestBytecodeSummary.py
@@ -5,6 +5,7 @@
 
 
 class TestCase(TestBase):
+    @skipIfWindows
     def test(self):
         self.build()
         if self.TraceOn():

diff  --git a/lldb/test/API/functionalities/data-formatter/bytecode-synthetic/TestBytecodeSynthetic.py b/lldb/test/API/functionalities/data-formatter/bytecode-synthetic/TestBytecodeSynthetic.py
index 21228c61e1427..1c0f05f20182e 100644
--- a/lldb/test/API/functionalities/data-formatter/bytecode-synthetic/TestBytecodeSynthetic.py
+++ b/lldb/test/API/functionalities/data-formatter/bytecode-synthetic/TestBytecodeSynthetic.py
@@ -5,6 +5,7 @@
 
 
 class TestCase(TestBase):
+    @skipIfWindows
     def test_synthetic(self):
         self.build()
         if self.TraceOn():
@@ -21,6 +22,7 @@ def test_synthetic(self):
 
         self.expect("v acc", matching=False, substrs=["password"])
 
+    @skipIfWindows
     def test_update_reuse(self):
         self.build()
 


        


More information about the lldb-commits mailing list