diff options
| author | Jose Luis Duran <jlduran@FreeBSD.org> | 2026-01-14 17:06:14 +0000 |
|---|---|---|
| committer | Jose Luis Duran <jlduran@FreeBSD.org> | 2026-01-14 17:07:56 +0000 |
| commit | fef84fd8ae845e19cec0f6b9aac0e6451cca3d7a (patch) | |
| tree | 9f977b21386574714f31a1d1cc585ce5ba13cc6e | |
| parent | fd26fb8987f7f6d40ecac689476062aa95f12379 (diff) | |
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
| -rw-r--r-- | lib/libexecinfo/tests/sigtramp_test.c | 8 |
1 files changed, 8 insertions, 0 deletions
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; |
