git: 8e49c6c84cae - stable/14 - libexecinfo: tests: Expect failure on aarch64
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 21 Jan 2026 01:53:53 UTC
The branch stable/14 has been updated by jlduran:
URL: https://cgit.FreeBSD.org/src/commit/?id=8e49c6c84cae980196b10886290e0c87c711cfdb
commit 8e49c6c84cae980196b10886290e0c87c711cfdb
Author: Jose Luis Duran <jlduran@FreeBSD.org>
AuthorDate: 2026-01-14 17:06:14 +0000
Commit: Jose Luis Duran <jlduran@FreeBSD.org>
CommitDate: 2026-01-21 01:51:35 +0000
libexecinfo: tests: Expect failure on aarch64
Add a guard that expects a failure of the test on aarch64.
Reviewed by: emaste
Fixes: df1ea5887326 ("tests: Test libexecinfo backtrace call througth signal trampoline")
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D54675
(cherry picked from commit fef84fd8ae845e19cec0f6b9aac0e6451cca3d7a)
---
lib/libexecinfo/tests/sigtramp_test.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/lib/libexecinfo/tests/sigtramp_test.c b/lib/libexecinfo/tests/sigtramp_test.c
index b8eecfddf43d..ab90f49c24a5 100644
--- a/lib/libexecinfo/tests/sigtramp_test.c
+++ b/lib/libexecinfo/tests/sigtramp_test.c
@@ -45,6 +45,14 @@ handler(int signum __unused)
ATF_TC_WITHOUT_HEAD(test_backtrace_sigtramp);
ATF_TC_BODY(test_backtrace_sigtramp, tc)
{
+#if defined(__aarch64__)
+ /*
+ * 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");
+#endif
+
struct sigaction act;
pid_t child;
int status;