[Lldb-commits] [lldb] [lldb] Disable the API test TestCppBitfields on Windows (PR #105037)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Aug 20 08:50:25 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Dmitry Vasilyev (slydiman)
<details>
<summary>Changes</summary>
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.
---
Full diff: https://github.com/llvm/llvm-project/pull/105037.diff
1 Files Affected:
- (modified) lldb/test/API/lang/cpp/bitfields/TestCppBitfields.py (+1)
``````````diff
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(
``````````
</details>
https://github.com/llvm/llvm-project/pull/105037
More information about the lldb-commits
mailing list