diff --git a/libc/test/src/math/HypotTest.h b/libc/test/src/math/HypotTest.h index e8b4cf06ad973..8d3fd88dec31d 100644 --- a/libc/test/src/math/HypotTest.h +++ b/libc/test/src/math/HypotTest.h @@ -59,7 +59,7 @@ class HypotTestTemplate : public __llvm_libc::testing::Test { } void test_subnormal_range(Func func) { - constexpr UIntType COUNT = 1000001; + constexpr UIntType COUNT = 100001; for (unsigned scale = 0; scale < 4; ++scale) { UIntType max_value = FPBits::MAX_SUBNORMAL << scale; UIntType step = (max_value - FPBits::MIN_SUBNORMAL) / COUNT; @@ -84,7 +84,7 @@ class HypotTestTemplate : public __llvm_libc::testing::Test { } void test_normal_range(Func func) { - constexpr UIntType COUNT = 1000001; + constexpr UIntType COUNT = 100001; constexpr UIntType STEP = (FPBits::MAX_NORMAL - FPBits::MIN_NORMAL) / COUNT; for (int signs = 0; signs < 4; ++signs) { for (UIntType v = FPBits::MIN_NORMAL, w = FPBits::MAX_NORMAL;