[Lldb-commits] [lldb] ba4cf31 - [lldb][test] Skip part of nested expressions test on Windows
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Mon Jan 8 04:18:31 PST 2024
Author: David Spickett
Date: 2024-01-08T12:17:16Z
New Revision: ba4cf31facdaf9bb9943c057d325ff0968331e9a
URL: https://github.com/llvm/llvm-project/commit/ba4cf31facdaf9bb9943c057d325ff0968331e9a
DIFF: https://github.com/llvm/llvm-project/commit/ba4cf31facdaf9bb9943c057d325ff0968331e9a.diff
LOG: [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
Added:
Modified:
lldb/test/API/commands/expression/nested/TestNestedExpressions.py
Removed:
################################################################################
diff --git a/lldb/test/API/commands/expression/nested/TestNestedExpressions.py b/lldb/test/API/commands/expression/nested/TestNestedExpressions.py
index 7f194e921e5628..6a97d4f34e6792 100644
--- a/lldb/test/API/commands/expression/nested/TestNestedExpressions.py
+++ b/lldb/test/API/commands/expression/nested/TestNestedExpressions.py
@@ -33,6 +33,8 @@ def test_struct_in_nested_structs(self):
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.
More information about the lldb-commits
mailing list