[libc-commits] [libc] [libc][math] Disable shared math tests on AArch64 (PR #183516)

via libc-commits libc-commits at lists.llvm.org
Thu Feb 26 04:48:16 PST 2026


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-libc

Author: Muhammad Bassiouni (bassiounix)

<details>
<summary>Changes</summary>



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


1 Files Affected:

- (modified) libc/test/shared/CMakeLists.txt (+4) 


``````````diff
diff --git a/libc/test/shared/CMakeLists.txt b/libc/test/shared/CMakeLists.txt
index 1b6d0ad9a6edd..5db2cbdddd362 100644
--- a/libc/test/shared/CMakeLists.txt
+++ b/libc/test/shared/CMakeLists.txt
@@ -1,3 +1,5 @@
+if(NOT LIBC_TARGET_ARCHITECTURE_IS_AARCH64)
+
 add_custom_target(libc-shared-tests)
 
 add_fp_unittest(
@@ -213,3 +215,5 @@ add_fp_unittest(
     libc.src.__support.math.tanhf16
     libc.src.__support.math.tanpif
 )
+
+endif()

``````````

</details>


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


More information about the libc-commits mailing list