Skip to content

Commit fe4392e

Browse files
committed
Tighten 128-bit tols and cover-system-files
1 parent fe4305f commit fe4392e

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed

test/cover/make_gcov_02_files.gmk

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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

1819
FILES_EXCLUDE := $(basename $(FILES_EXCLUDE))
1920

test/test_atan.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

test/test_exp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

test/test_expm1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

test/test_log.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

test/test_log10.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

test/test_log1p.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

test/test_tanh.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)