[Lldb-commits] [lldb] d2223c7 - [lldb] XFAIL TestStoppedInStaticMemberFunction on Windows
Raphael Isemann via lldb-commits
lldb-commits at lists.llvm.org
Thu Apr 22 04:46:45 PDT 2021
Author: Raphael Isemann
Date: 2021-04-22T13:46:27+02:00
New Revision: d2223c7a49973a61cc2de62992662afa8d19065a
URL: https://github.com/llvm/llvm-project/commit/d2223c7a49973a61cc2de62992662afa8d19065a
DIFF: https://github.com/llvm/llvm-project/commit/d2223c7a49973a61cc2de62992662afa8d19065a.diff
LOG: [lldb] XFAIL TestStoppedInStaticMemberFunction on Windows
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.
Added:
Modified:
lldb/test/API/lang/cpp/stopped_in_static_member_function/TestStoppedInStaticMemberFunction.py
Removed:
################################################################################
diff --git a/lldb/test/API/lang/cpp/stopped_in_static_member_function/TestStoppedInStaticMemberFunction.py b/lldb/test/API/lang/cpp/stopped_in_static_member_function/TestStoppedInStaticMemberFunction.py
index e1cfa12305cc..b69263a00fd2 100644
--- a/lldb/test/API/lang/cpp/stopped_in_static_member_function/TestStoppedInStaticMemberFunction.py
+++ b/lldb/test/API/lang/cpp/stopped_in_static_member_function/TestStoppedInStaticMemberFunction.py
@@ -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()
More information about the lldb-commits
mailing list