Reduce numbers of test cases

This commit is contained in:
Christopher Kormanyos
2021-08-05 17:12:24 +02:00
parent ecb27a6156
commit aac40fcf0e
3 changed files with 10 additions and 8 deletions

View File

@@ -381,9 +381,9 @@ int main()
#endif
#if !defined(CPP_DOUBLE_FLOAT_REDUCE_TEST_DEPTH)
constexpr unsigned int test_cases_float128 = (unsigned int) (1ULL << 15U);
constexpr unsigned int test_cases_float128 = (unsigned int) (1ULL << 14U);
#else
constexpr unsigned int test_cases_float128 = (unsigned int) (1ULL << 12U);
constexpr unsigned int test_cases_float128 = (unsigned int) (1ULL << 10U);
#endif
const bool result_flt___is_ok = local::test_arithmetic<float> (test_cases_built_in); std::cout << "result_flt___is_ok: " << std::boolalpha << result_flt___is_ok << std::endl;
@@ -408,4 +408,4 @@ int main()
);
return (result_is_ok ? 0 : -1);
}
}