[libc][Obvious] Reduce the size of the tests for hypot(f).
authorTue Ly <lntue@google.com>
Fri, 17 Mar 2023 01:17:20 +0000 (21:17 -0400)
committerTue Ly <lntue@google.com>
Fri, 17 Mar 2023 01:17:20 +0000 (21:17 -0400)
libc/test/src/math/HypotTest.h

index e8b4cf0..8d3fd88 100644 (file)
@@ -59,7 +59,7 @@ public:
   }
 
   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 @@ public:
   }
 
   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;