[lldb] Enable test for `getelementptr` const args for Windows
authorAndy Yankovsky <weratt@gmail.com>
Mon, 14 Feb 2022 18:48:51 +0000 (18:48 +0000)
committerAndy Yankovsky <weratt@gmail.com>
Mon, 14 Feb 2022 18:48:51 +0000 (18:48 +0000)
The test actually passes fine on Windows, since it doesn't use any
static members.

Follow-up to https://reviews.llvm.org/D113498

lldb/test/API/lang/cpp/static_members/TestCPPStaticMembers.py

index 85ebd5f..35e29cc 100644 (file)
@@ -72,8 +72,6 @@ class TestCase(TestBase):
         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"))