[Lldb-commits] [lldb] d4002b4 - [lldb] Skip Expression NonZeroFrame test on Windows
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Fri Apr 4 07:34:09 PDT 2025
Author: David Spickett
Date: 2025-04-04T14:32:48Z
New Revision: d4002b43f517fea0292bf71dccaa3d0f6dd798b9
URL: https://github.com/llvm/llvm-project/commit/d4002b43f517fea0292bf71dccaa3d0f6dd798b9
DIFF: https://github.com/llvm/llvm-project/commit/d4002b43f517fea0292bf71dccaa3d0f6dd798b9.diff
LOG: [lldb] Skip Expression NonZeroFrame test on Windows
It is failing on our Windows on Arm bot:
https://lab.llvm.org/buildbot/#/builders/141/builds/7605
Will investigate later.
Added:
Modified:
lldb/test/API/commands/expression/expr-from-non-zero-frame/TestExprFromNonZeroFrame.py
Removed:
################################################################################
diff --git a/lldb/test/API/commands/expression/expr-from-non-zero-frame/TestExprFromNonZeroFrame.py b/lldb/test/API/commands/expression/expr-from-non-zero-frame/TestExprFromNonZeroFrame.py
index 623c5b87f14c7..bc3f0459bd649 100644
--- a/lldb/test/API/commands/expression/expr-from-non-zero-frame/TestExprFromNonZeroFrame.py
+++ b/lldb/test/API/commands/expression/expr-from-non-zero-frame/TestExprFromNonZeroFrame.py
@@ -7,6 +7,8 @@
class ExprFromNonZeroFrame(TestBase):
NO_DEBUG_INFO_TESTCASE = True
+ # Expression fails to evaluate on Windows, for unknown reasons.
+ @skipIfWindows
def test(self):
"""
Tests that we can use SBFrame::EvaluateExpression on a frame
More information about the lldb-commits
mailing list