From ba4cf31facdaf9bb9943c057d325ff0968331e9a Mon Sep 17 00:00:00 2001 From: David Spickett Date: Mon, 8 Jan 2024 12:17:16 +0000 Subject: [PATCH] [lldb][test] Skip part of nested expressions test on Windows This was added by e42edb5547618c172abe25914000bb61f5278c4c and has been failing: https://lab.llvm.org/buildbot/#/builders/219/builds/8012 --- .../API/commands/expression/nested/TestNestedExpressions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lldb/test/API/commands/expression/nested/TestNestedExpressions.py b/lldb/test/API/commands/expression/nested/TestNestedExpressions.py index 7f194e921e56..6a97d4f34e67 100644 --- a/lldb/test/API/commands/expression/nested/TestNestedExpressions.py +++ b/lldb/test/API/commands/expression/nested/TestNestedExpressions.py @@ -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.