[Lldb-commits] [lldb] e0f2375 - [lldb] Disable failing test on Windows

Andy Yankovsky via lldb-commits lldb-commits at lists.llvm.org
Wed Feb 9 11:42:02 PST 2022


Author: Andy Yankovsky
Date: 2022-02-09T20:40:50+01:00
New Revision: e0f2375b5262d0dd778ecaf0628f905d241da733

URL: https://github.com/llvm/llvm-project/commit/e0f2375b5262d0dd778ecaf0628f905d241da733
DIFF: https://github.com/llvm/llvm-project/commit/e0f2375b5262d0dd778ecaf0628f905d241da733.diff

LOG: [lldb] Disable failing test on Windows

Test was introduced in 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 503e0d1341566..7cb4c51b02b30 100644
--- a/lldb/test/API/lang/cpp/static_members/TestCPPStaticMembers.py
+++ b/lldb/test/API/lang/cpp/static_members/TestCPPStaticMembers.py
@@ -42,6 +42,8 @@ def test_access_without_scope(self):
         self.expect("expression s_c", error=True,
                     startstr="error: use of undeclared identifier 's_d'")
 
+    # We fail to lookup static members on Windows.
+    @expectedFailureAll(oslist=["windows"])
     def test_no_crash_in_IR_arithmetic(self):
         """
         Test that LLDB doesn't crash on evaluating specific expression involving


        


More information about the lldb-commits mailing list