[libcxx-commits] [libcxxabi] [libc++abi] Disable forced_unwind4 test for musl. (PR #85096)

via libcxx-commits libcxx-commits at lists.llvm.org
Wed Mar 13 08:00:13 PDT 2024


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-libcxxabi

Author: Alastair Houghton (al45tair)

<details>
<summary>Changes</summary>

This test won't pass on musl, but we should still run it for other Linux platforms.

rdar://123436716

---
Full diff: https://github.com/llvm/llvm-project/pull/85096.diff


1 Files Affected:

- (modified) libcxxabi/test/forced_unwind4.pass.cpp (+2-2) 


``````````diff
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__

``````````

</details>


https://github.com/llvm/llvm-project/pull/85096


More information about the libcxx-commits mailing list