git: 0b6f420611fa - stable/14 - tests/sigtramp_test: xfail on non-amd64
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 26 Jun 2026 16:59:45 UTC
The branch stable/14 has been updated by siva:
URL: https://cgit.FreeBSD.org/src/commit/?id=0b6f420611fae6a9dbeb07ae6376049bfe2d408c
commit 0b6f420611fae6a9dbeb07ae6376049bfe2d408c
Author: Siva Mahadevan <siva@FreeBSD.org>
AuthorDate: 2026-06-15 22:09:05 +0000
Commit: Siva Mahadevan <siva@FreeBSD.org>
CommitDate: 2026-06-26 16:04:30 +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
(cherry picked from commit 0010c4b8a020dbeb81e61b71117d1caae9b044cc)
---
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 ab90f49c24a5..d5632df8aa92 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;