Skip to content

Commit 85eec89

Browse files
committed
[lldb][test] Disable new dwarf5 integral member tests on Windows
Added by #111859 Due to: https://lab.llvm.org/buildbot/#/builders/141/builds/3691 This is not uncommon with DWARF testing on Windows. We may be discarding the required information during linking. I will look into it next week.
1 parent 7aa02f9 commit 85eec89

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lldb/test/API/lang/cpp/const_static_integral_member/TestConstStaticIntegralMember.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@ def check_inline_static_members(self, flags):
142142
"ClassWithConstexprs::scoped_enum_val", "ScopedEnum", "scoped_enum_case2"
143143
)
144144

145+
# Fails on Windows for unknown reasons.
146+
@skipIfWindows
145147
# On linux this passes due to the manual index
146148
@expectedFailureDarwin(debug_info=no_match(["dsym"]))
147149
def test_inline_static_members_dwarf5(self):
@@ -193,6 +195,8 @@ def check_shadowed_static_inline_members(self, flags):
193195
self.expect_expr("ns::Foo::mem", result_value="10")
194196
self.expect_expr("::Foo::mem", result_value="-29")
195197

198+
# Fails on Windows for unknown reasons.
199+
@skipIfWindows
196200
# On linux this passes due to the manual index
197201
@expectedFailureDarwin(debug_info=no_match(["dsym"]))
198202
def test_shadowed_static_inline_members_dwarf5(self):

0 commit comments

Comments
 (0)