[lldb][test] Skip part of nested expressions test on Windows

This was added by e42edb5547 and
has been failing: https://lab.llvm.org/buildbot/#/builders/219/builds/8012
This commit is contained in:
David Spickett 2024-01-08 12:17:16 +00:00
parent 8b49ed8ba1
commit ba4cf31fac

View File

@ -33,6 +33,8 @@ class NestedExpressions(TestBase):
self.expect_expr("sizeof(A::B::C)", result_value="1")
self.expect_expr("sizeof(A::B)", result_value="2")
# Fails on Windows for unknown reasons.
@skipIfWindows
def test_static_in_nested_structs(self):
"""
Test expressions that references a static variable in nested structs.