Skip to content

Commit 34bf9dd

Browse files
committed
[lldb][test] TestConstStaticIntegralMember.py: fix XFAIL decorators
The `compiler` parameter is not supported in the `expectedFailureDarwin` decorator. Change the decorator to `expectedFailureAll`, which is fine because this only affects the `dsym` variant (which is only a macOS variant).
1 parent 39bce77 commit 34bf9dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/test/API/lang/cpp/const_static_integral_member/TestConstStaticIntegralMember.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def check_inline_static_members(self, flags):
146146
@skipIfWindows
147147
# On linux this passes due to the manual index
148148
@expectedFailureDarwin(debug_info=no_match(["dsym"]))
149-
@expectedFailureDarwin(debug_info=["dsym"], compiler=["clang"], compiler_version=["<", "19.0"])
149+
@expectedFailureAll(debug_info=["dsym"], compiler=["clang"], compiler_version=["<", "19.0"])
150150
def test_inline_static_members_dwarf5(self):
151151
self.check_inline_static_members("-gdwarf-5")
152152

@@ -200,7 +200,7 @@ def check_shadowed_static_inline_members(self, flags):
200200
@skipIfWindows
201201
# On linux this passes due to the manual index
202202
@expectedFailureDarwin(debug_info=no_match(["dsym"]))
203-
@expectedFailureDarwin(debug_info=["dsym"], compiler=["clang"], compiler_version=["<", "19.0"])
203+
@expectedFailureAll(debug_info=["dsym"], compiler=["clang"], compiler_version=["<", "19.0"])
204204
def test_shadowed_static_inline_members_dwarf5(self):
205205
self.check_shadowed_static_inline_members("-gdwarf-5")
206206

0 commit comments

Comments
 (0)