--- tests/check_check_master.c.orig 2016-12-17 16:35:40.000000000 -0700 +++ tests/check_check_master.c 2016-12-23 11:54:11.764383535 -0700 @@ -191,7 +191,7 @@ static master_test_t master_tests[] = { { "Simple Tests", "test_ck_assert_ldouble_ge", CK_FAILURE, "Assertion 'x >= y' failed: x == 2.5, y == 3" }, { "Simple Tests", "test_ck_assert_ldouble_ge_with_mod", CK_FAILURE, "Assertion '2%d >= 3%f' failed: 2%d == 0, 3%f == 1" }, { "Simple Tests", "test_ck_assert_ldouble_with_expr", CK_PASS, "Passed" }, - { "Simple Tests", "test_ck_assert_ldouble_eq_tol", CK_FAILURE, "Assertion 'fabsl(y - x) < t' failed: x == 0.001, y == 0.002, t == 0.001" }, + { "Simple Tests", "test_ck_assert_ldouble_eq_tol", CK_FAILURE, "Assertion 'fabsl(y - x) < t' failed: x == 0.001, y == 0.002, t == 0.0009" }, { "Simple Tests", "test_ck_assert_ldouble_eq_tol_with_mod", CK_FAILURE, "Assertion 'fabsl(2%f - 3%d) < 2%p' failed: 3%d == 1, 2%f == 0, 2%p == 0" }, { "Simple Tests", "test_ck_assert_ldouble_ne_tol", CK_FAILURE, "Assertion 'fabsl(y - x) >= t' failed: x == 0.001, y == 0.002, t == 0.01" }, { "Simple Tests", "test_ck_assert_ldouble_ne_tol_with_mod", CK_FAILURE, "Assertion 'fabsl(3%f - 3%d) >= 3%p' failed: 3%d == 1, 3%f == 1, 3%p == 1" }, --- tests/check_check_sub.c.orig 2016-12-17 16:35:40.000000000 -0700 +++ tests/check_check_sub.c 2016-12-23 11:53:46.643534215 -0700 @@ -1634,7 +1634,7 @@ START_TEST(test_ck_assert_ldouble_eq_tol y*=10.0l; t*=10.0l; ck_assert_ldouble_eq_tol(x, y, t); - t/=10.0l; + t=0.0009l; record_failure_line_num(__LINE__); ck_assert_ldouble_eq_tol(x, y, t); }