diff options
| author | Siva Mahadevan <siva@FreeBSD.org> | 2026-06-15 22:09:05 +0000 |
|---|---|---|
| committer | Siva Mahadevan <siva@FreeBSD.org> | 2026-06-16 03:21:10 +0000 |
| commit | 0010c4b8a020dbeb81e61b71117d1caae9b044cc (patch) | |
| tree | 47bfc9afbec67766ef102c49a397a383f56a2a7c | |
| parent | a641aa1c80f80e44cd9212b95e6584db9533712c (diff) | |
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
| -rw-r--r-- | lib/libexecinfo/tests/sigtramp_test.c | 4 |
1 files 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; |
