[libc-commits] [libc] 15d4a06 - [libc][Obvious] Disable log10_test as it is failing on the x86_64 builders.
Siva Chandra Reddy via libc-commits
libc-commits at lists.llvm.org
Wed Jan 25 00:14:58 PST 2023
Author: Siva Chandra Reddy
Date: 2023-01-25T08:13:45Z
New Revision: 15d4a06e1fa486c48db87516d14209b72eb6cf3d
URL: https://github.com/llvm/llvm-project/commit/15d4a06e1fa486c48db87516d14209b72eb6cf3d
DIFF: https://github.com/llvm/llvm-project/commit/15d4a06e1fa486c48db87516d14209b72eb6cf3d.diff
LOG: [libc][Obvious] Disable log10_test as it is failing on the x86_64 builders.
Added:
Modified:
libc/test/src/math/CMakeLists.txt
Removed:
################################################################################
diff --git a/libc/test/src/math/CMakeLists.txt b/libc/test/src/math/CMakeLists.txt
index e9159e3c8bd7d..4e78328384b14 100644
--- a/libc/test/src/math/CMakeLists.txt
+++ b/libc/test/src/math/CMakeLists.txt
@@ -1317,22 +1317,24 @@ add_fp_unittest(
libc.src.__support.FPUtil.fp_bits
)
-add_fp_unittest(
- log10_test
- NEED_MPFR
- SUITE
- libc_math_unittests
- SRCS
- log10_test.cpp
- DEPENDS
- libc.include.errno
- libc.src.errno.errno
- libc.include.math
- libc.src.math.log10
- libc.src.__support.FPUtil.fp_bits
- FLAGS
- FMA_OPT__ONLY
-)
+# TODO: Enable log10_test after #60282 is addressed. It is disabled for now
+# as it is failing on the bots.
+#add_fp_unittest(
+# log10_test
+# NEED_MPFR
+# SUITE
+# libc_math_unittests
+# SRCS
+# log10_test.cpp
+# DEPENDS
+# libc.include.errno
+# libc.src.errno.errno
+# libc.include.math
+# libc.src.math.log10
+# libc.src.__support.FPUtil.fp_bits
+# FLAGS
+# FMA_OPT__ONLY
+#)
add_fp_unittest(
log10f_test
More information about the libc-commits
mailing list