[Lldb-commits] [lldb] [lldb][test] TestConstStaticIntegralMember.py: un-XFAIL on Linux (PR #71486)

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Mon Nov 6 21:12:54 PST 2023


https://github.com/Michael137 created https://github.com/llvm/llvm-project/pull/71486

This is a newly added test which XPASSes on Linux

>From acf1ba6c54bc897cf572a01bb0caeeff207f76dc Mon Sep 17 00:00:00 2001
From: Michael Buch <michaelbuch12 at gmail.com>
Date: Tue, 7 Nov 2023 05:10:44 +0000
Subject: [PATCH] [lldb][test] TestConstStaticIntegralMember.py: un-XFAIL on
 Linux

This is a newly added test which XPASSes on Linux
---
 .../TestConstStaticIntegralMember.py                            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lldb/test/API/lang/cpp/const_static_integral_member/TestConstStaticIntegralMember.py b/lldb/test/API/lang/cpp/const_static_integral_member/TestConstStaticIntegralMember.py
index bf656aa2266fdc7..ac6273f4c44e8d8 100644
--- a/lldb/test/API/lang/cpp/const_static_integral_member/TestConstStaticIntegralMember.py
+++ b/lldb/test/API/lang/cpp/const_static_integral_member/TestConstStaticIntegralMember.py
@@ -125,7 +125,7 @@ def check_global_var(self, name: str, expect_type, expect_val):
     # wouldn't get indexed into the Names accelerator table preventing LLDB from finding
     # them.
     @expectedFailureAll(compiler=["clang"], compiler_version=["<", "18.0"])
-    @expectedFailureAll(debug_info=no_match(["dsym"]))
+    @expectedFailureAll(debug_info=no_match(["dsym"]), oslist=no_match(["linux"]))
     def test_inline_static_members(self):
         self.build()
         lldbutil.run_to_source_breakpoint(



More information about the lldb-commits mailing list