git: fef84fd8ae84 - main - libexecinfo: tests: Expect failure on aarch64
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 14 Jan 2026 17:08:15 UTC
The branch main has been updated by jlduran:
URL: https://cgit.FreeBSD.org/src/commit/?id=fef84fd8ae845e19cec0f6b9aac0e6451cca3d7a
commit fef84fd8ae845e19cec0f6b9aac0e6451cca3d7a
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-14 17:07:56 +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
---
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 a4943d8d7f4f..5dead9a4146b 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;