[Lldb-commits] [lldb] 31e55d4 - [lldb] Disable the API test TestCppBitfields on Windows (#105037)

via lldb-commits lldb-commits at lists.llvm.org
Tue Aug 20 11:26:52 PDT 2024


Author: Dmitry Vasilyev
Date: 2024-08-20T22:26:49+04:00
New Revision: 31e55d461693df035049e09cbeeb8886ca2cb6d3

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

LOG: [lldb] Disable the API test TestCppBitfields on Windows (#105037)

This test causes the assert in clang CodeGen and python crashes with the
error code 0x80000003. See #105019 for more details. Note the similar
test lldb/test/API/lang/c/bitfields/TestBitfields.py is already disabled
on Windows.

Added: 
    

Modified: 
    lldb/test/API/lang/cpp/bitfields/TestCppBitfields.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/lang/cpp/bitfields/TestCppBitfields.py b/lldb/test/API/lang/cpp/bitfields/TestCppBitfields.py
index f796c635895ac1..dba1422a0d52a1 100644
--- a/lldb/test/API/lang/cpp/bitfields/TestCppBitfields.py
+++ b/lldb/test/API/lang/cpp/bitfields/TestCppBitfields.py
@@ -8,6 +8,7 @@
 
 class CppBitfieldsTestCase(TestBase):
     @no_debug_info_test
+    @skipIf(oslist=["windows"], bugnumber="github.com/llvm/llvm-project/issues/105019")
     def test_bitfields(self):
         self.build()
         lldbutil.run_to_source_breakpoint(


        


More information about the lldb-commits mailing list