- Expect exp2_powers to fail on FreeBSD/i386

- Expect exp2_values to fail on FreeBSD due to the small epsilon

Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
Enji Cooper 2014-11-16 20:39:11 +00:00
parent 12c91ea883
commit 84e369d8fc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=274600

View File

@ -131,6 +131,10 @@ ATF_LIBM_TEST(exp2_powers, "Test exp2(x) is correct for some integer x")
};
unsigned int i;
#if defined(__FreeBSD__) && defined(__i386__)
atf_tc_expect_fail("a number of the assertions fail on i386");
#endif
for (i = 0; i < __arraycount(v); i++) {
T_LIBM_CHECK(i, exp2, v[i].x, v[i].d_y, 0.0);
T_LIBM_CHECK(i, exp2f, v[i].x, v[i].f_y, 0.0);
@ -173,6 +177,11 @@ ATF_LIBM_TEST(exp2_values, "Test exp2(x) is correct for some x")
};
unsigned int i;
#ifdef __FreeBSD__
atf_tc_expect_fail("Some of the cases produce failures on FreeBSD "
"due to the error epsilon being so small");
#endif
for (i = 0; i < __arraycount(v); i++) {
T_LIBM_CHECK(i, exp2, v[i].x, v[i].y, v[i].d_eps);
if (i > 1)