[libcxx-commits] [libcxxabi] [libc++abi] Disable forced_unwind4 test for musl. (PR #85096)
Alastair Houghton via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Mar 13 07:59:41 PDT 2024
https://github.com/al45tair created https://github.com/llvm/llvm-project/pull/85096
This test won't pass on musl, but we should still run it for other Linux platforms.
rdar://123436716
>From f8ade6f8ceab6bf98afd08bcebed708995ea7b00 Mon Sep 17 00:00:00 2001
From: Alastair Houghton <ahoughton at apple.com>
Date: Thu, 22 Feb 2024 11:55:36 +0000
Subject: [PATCH] [libc++abi] Disable forced_unwind4 test for musl.
This test won't pass on musl, but we should still run it
for other Linux platforms.
rdar://123436716
---
libcxxabi/test/forced_unwind4.pass.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libcxxabi/test/forced_unwind4.pass.cpp b/libcxxabi/test/forced_unwind4.pass.cpp
index 2864426ca16dcd..15efca8d931629 100644
--- a/libcxxabi/test/forced_unwind4.pass.cpp
+++ b/libcxxabi/test/forced_unwind4.pass.cpp
@@ -7,10 +7,10 @@
//
//===----------------------------------------------------------------------===//
-// REQUIRES: linux && target={{aarch64-.+}}
+// REQUIRES: linux && target=aarch64-{{.+}}-gnu
// pthread_cancel in case of glibc calls _Unwind_ForcedUnwind from a signal on
-// the child_thread. This test ensures sigretrun is handled correctly (see:
+// the child_thread. This test ensures sigreturn is handled correctly (see:
// UnwindCursor<A, R>::setInfoForSigReturn).
#include <cstdlib> // defines __BIONIC__
More information about the libcxx-commits
mailing list