[Lldb-commits] [lldb] 317481b - [lldb][test] TestConstStaticIntegralMember.py: un-XFAIL on Linux (#71486)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Nov 6 21:23:49 PST 2023
Author: Michael Buch
Date: 2023-11-07T05:23:46Z
New Revision: 317481b3c8b34b0c3f106c514e6aa39b70886110
URL: https://github.com/llvm/llvm-project/commit/317481b3c8b34b0c3f106c514e6aa39b70886110
DIFF: https://github.com/llvm/llvm-project/commit/317481b3c8b34b0c3f106c514e6aa39b70886110.diff
LOG: [lldb][test] TestConstStaticIntegralMember.py: un-XFAIL on Linux (#71486)
This is a newly added test which XPASSes on Linux
Added:
Modified:
lldb/test/API/lang/cpp/const_static_integral_member/TestConstStaticIntegralMember.py
Removed:
################################################################################
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