[libc-commits] [libc] b7989de - [libc][math] Disable shared math tests on AArch64

via libc-commits libc-commits at lists.llvm.org
Thu Feb 26 05:01:50 PST 2026


Author: Muhammad Bassiouni
Date: 2026-02-26T15:01:46+02:00
New Revision: b7989de510ef17af1e7853632ee220bd7d9c09b1

URL: https://github.com/llvm/llvm-project/commit/b7989de510ef17af1e7853632ee220bd7d9c09b1
DIFF: https://github.com/llvm/llvm-project/commit/b7989de510ef17af1e7853632ee220bd7d9c09b1.diff

LOG: [libc][math] Disable shared math tests on AArch64

Added: 
    

Modified: 
    libc/test/shared/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/libc/test/shared/CMakeLists.txt b/libc/test/shared/CMakeLists.txt
index 424e4180fc932..fb26bb0e8ada6 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(
@@ -220,3 +222,5 @@ add_fp_unittest(
     libc.src.__support.math.tanhf16
     libc.src.__support.math.tanpif
 )
+
+endif()


        


More information about the libc-commits mailing list