[lldb] XFAIL TestStoppedInStaticMemberFunction on Windows
authorRaphael Isemann <teemperor@gmail.com>
Thu, 22 Apr 2021 11:45:15 +0000 (13:45 +0200)
committerRaphael Isemann <teemperor@gmail.com>
Thu, 22 Apr 2021 11:46:27 +0000 (13:46 +0200)
It seems we can't find the symbols of static members on Windows? The bug is not
 relevant to what this test is actually testing so let's just XFAIL it.

lldb/test/API/lang/cpp/stopped_in_static_member_function/TestStoppedInStaticMemberFunction.py

index e1cfa12..b69263a 100644 (file)
@@ -8,6 +8,9 @@ class TestCase(TestBase):
 
     mydir = TestBase.compute_mydir(__file__)
 
+    # On Windows we can lookup the declarations of static members but finding
+    # up the underlying symbols doesn't work yet.
+    @expectedFailureAll(oslist=["windows"])
     @no_debug_info_test
     def test(self):
         self.build()