The branch main has been updated by siva: URL: https://cgit.FreeBSD.org/src/commit/?id=0010c4b8a020dbeb81e61b71117d1caae9b044cc
commit 0010c4b8a020dbeb81e61b71117d1caae9b044cc Author: Siva Mahadevan <[email protected]> AuthorDate: 2026-06-15 22:09:05 +0000 Commit: Siva Mahadevan <[email protected]> CommitDate: 2026-06-16 03:21:10 +0000 tests/sigtramp_test: xfail on non-amd64 This test fail until at least https://reviews.llvm.org/D155066 is rebased and picked up for aarch64 and more work is done for the other archs. PR: 289096 Reviewed by: jlduran Fixes: fef84fd8ae845e19cec0f6b9aac0e6451cca3d7a MFC after: 3 days --- lib/libexecinfo/tests/sigtramp_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libexecinfo/tests/sigtramp_test.c b/lib/libexecinfo/tests/sigtramp_test.c index 5dead9a4146b..b440781aa857 100644 --- a/lib/libexecinfo/tests/sigtramp_test.c +++ b/lib/libexecinfo/tests/sigtramp_test.c @@ -45,12 +45,12 @@ handler(int signum __unused) ATF_TC_WITHOUT_HEAD(test_backtrace_sigtramp); ATF_TC_BODY(test_backtrace_sigtramp, tc) { -#if defined(__aarch64__) +#if !defined(__amd64__) /* * https://reviews.llvm.org is deprecated and * this review is never going to be updated or completed */ - atf_tc_expect_fail("https://reviews.llvm.org/D155066"); + atf_tc_expect_fail("https://reviews.llvm.org/D155066 and https://bugs.freebsd.org/289096"); #endif struct sigaction act;
