Skip to content

Commit e154cbb

Browse files
committed
[lldb/testsuite] XFail TestBuiltinTrap.py not only on linux
Summary: TestBuiltinTrap fail on darwin embedded because the `__builin_trap` builtin doesn't get any line info attached to it by clang when building for arm64. The test was already XFailed for linux arm(64), I presume for the same reasons. This patch just XFails it independently of the platform. Reviewers: labath Subscribers: kristof.beyls, danielkiss, lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D76408
1 parent d0fb687 commit e154cbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/test/API/linux/builtin_trap/TestBuiltinTrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def setUp(self):
2323

2424
# gcc generates incorrect linetable
2525
@expectedFailureAll(archs="arm", compiler="gcc", triple=".*-android")
26-
@expectedFailureAll(oslist=['linux'], archs=['arm', 'aarch64'])
26+
@expectedFailureAll(archs=['arm', 'aarch64'])
2727
@skipIfWindows
2828
def test_with_run_command(self):
2929
"""Test that LLDB handles a function with __builtin_trap correctly."""

0 commit comments

Comments
 (0)