[Lldb-commits] [lldb] 7ec32da - [lldb] Enable test for `getelementptr` const args for Windows
Andy Yankovsky via lldb-commits
lldb-commits at lists.llvm.org
Mon Feb 14 10:51:43 PST 2022
Author: Andy Yankovsky
Date: 2022-02-14T18:48:51Z
New Revision: 7ec32dad2b01ffcd47b7f99f5ebba9130ab9e00b
URL: https://github.com/llvm/llvm-project/commit/7ec32dad2b01ffcd47b7f99f5ebba9130ab9e00b
DIFF: https://github.com/llvm/llvm-project/commit/7ec32dad2b01ffcd47b7f99f5ebba9130ab9e00b.diff
LOG: [lldb] Enable test for `getelementptr` const args for Windows
The test actually passes fine on Windows, since it doesn't use any
static members.
Follow-up to https://reviews.llvm.org/D113498
Added:
Modified:
lldb/test/API/lang/cpp/static_members/TestCPPStaticMembers.py
Removed:
################################################################################
diff --git a/lldb/test/API/lang/cpp/static_members/TestCPPStaticMembers.py b/lldb/test/API/lang/cpp/static_members/TestCPPStaticMembers.py
index 85ebd5fe68531..35e29cc97090c 100644
--- a/lldb/test/API/lang/cpp/static_members/TestCPPStaticMembers.py
+++ b/lldb/test/API/lang/cpp/static_members/TestCPPStaticMembers.py
@@ -72,8 +72,6 @@ def test_no_crash_in_IR_arithmetic(self):
value = self.target().EvaluateExpression(expr)
self.assertSuccess(value.GetError())
- # We fail to lookup static members on Windows.
- @expectedFailureAll(oslist=["windows"])
def test_IR_interpreter_can_handle_getelementptr_constants_args(self):
self.build()
lldbutil.run_to_source_breakpoint(self, "// stop in main", lldb.SBFileSpec("main.cpp"))
More information about the lldb-commits
mailing list