[libc-commits] [libc] [libc][math] Disable shared math tests on AArch64 (PR #183516)
Muhammad Bassiouni via libc-commits
libc-commits at lists.llvm.org
Thu Feb 26 04:47:51 PST 2026
https://github.com/bassiounix created https://github.com/llvm/llvm-project/pull/183516
None
>From 4619f2b6cc2234d3b7489655d372822e066eaab1 Mon Sep 17 00:00:00 2001
From: bassiounix <muhammad.m.bassiouni at gmail.com>
Date: Thu, 26 Feb 2026 14:28:30 +0200
Subject: [PATCH] [libc][math] Disable shared math tests on AArch64
---
libc/test/shared/CMakeLists.txt | 4 ++++
1 file changed, 4 insertions(+)
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()
More information about the libc-commits
mailing list