File tree Expand file tree Collapse file tree 8 files changed +9
-8
lines changed
Expand file tree Collapse file tree 8 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ FILES_EXCLUDE := $(PATH_SRC)/concepts_test.cpp \
1313 $(PATH_SRC)/link_2.cpp \
1414 $(PATH_SRC)/link_3.cpp \
1515 $(PATH_SRC)/test_bad_evaluation_method.cpp \
16- $(PATH_SRC)/test_explicit_floats.cpp
16+ $(PATH_SRC)/test_explicit_floats.cpp \
17+ $(PATH_SRC)/test_from_chars.cpp
1718
1819FILES_EXCLUDE := $(basename $(FILES_EXCLUDE))
1920
Original file line number Diff line number Diff line change @@ -380,7 +380,7 @@ int main()
380380 spot_test (0 .181179F );
381381
382382 {
383- const auto result_pos128_is_ok = local::test_atan_128 (600'000 );
383+ const auto result_pos128_is_ok = local::test_atan_128 (8192 );
384384
385385 BOOST_TEST (result_pos128_is_ok);
386386 }
Original file line number Diff line number Diff line change @@ -378,7 +378,7 @@ auto main() -> int
378378 }
379379
380380 {
381- const auto result_pos128_is_ok = local::test_exp_128 (400'000 );
381+ const auto result_pos128_is_ok = local::test_exp_128 (8192 );
382382
383383 BOOST_TEST (result_pos128_is_ok);
384384
Original file line number Diff line number Diff line change @@ -339,7 +339,7 @@ auto main() -> int
339339
340340 const auto result_pos64_is_ok = local::test_expm1_64 (64 );
341341
342- const auto result_pos128_is_ok = local::test_expm1_128 (400'000 );
342+ const auto result_pos128_is_ok = local::test_expm1_128 (8192 );
343343
344344 BOOST_TEST (result_pos_is_ok);
345345 BOOST_TEST (result_neg_is_ok);
Original file line number Diff line number Diff line change @@ -479,7 +479,7 @@ auto main() -> int
479479 }
480480
481481 {
482- const auto result_pos128_is_ok = local::test_log_128 (800'000 );
482+ const auto result_pos128_is_ok = local::test_log_128 (8192 );
483483
484484 BOOST_TEST (result_pos128_is_ok);
485485
Original file line number Diff line number Diff line change @@ -414,7 +414,7 @@ auto main() -> int
414414 }
415415
416416 {
417- const auto result_pos128_is_ok = local::test_log10_128 (600'000 );
417+ const auto result_pos128_is_ok = local::test_log10_128 (8192 );
418418
419419 BOOST_TEST (result_pos128_is_ok);
420420
Original file line number Diff line number Diff line change @@ -388,7 +388,7 @@ auto main() -> int
388388 }
389389
390390 {
391- const auto result_pos128_is_ok = local::test_log1p_128 (400'000 );
391+ const auto result_pos128_is_ok = local::test_log1p_128 (8192 );
392392
393393 BOOST_TEST (result_pos128_is_ok);
394394
Original file line number Diff line number Diff line change @@ -352,7 +352,7 @@ auto main() -> int
352352
353353 const auto result_pos64_is_ok = local::test_tanh_64 (64 );
354354
355- const auto result_pos128_is_ok = local::test_tanh_128 (400'000 );
355+ const auto result_pos128_is_ok = local::test_tanh_128 (8192 );
356356
357357 BOOST_TEST (result_pos_is_ok);
358358 BOOST_TEST (result_neg_is_ok);
You can’t perform that action at this time.
0 commit comments