Expect the t_precision long double checks to fail on FreeBSD/i386

There are some potential issues with the test (as brd@ has pointed out
elsewhere) with precision, etc not being set before the test, but as
always, more research is required.
This commit is contained in:
Enji Cooper 2017-02-07 18:57:52 +00:00
parent 4a2dbde724
commit ce801ad813
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/projects/netbsd-tests-upstream-01-2017/; revision=313400

View File

@ -73,6 +73,11 @@ ATF_TC_BODY(t_precision, tc)
ATF_TP_ADD_TCS(tp)
{
#ifdef __FreeBSD__
#ifdef __i386__
atf_tc_expect_fail("the __HAVE_LONG_DOUBLE checks fail on i386");
#endif
#endif
ATF_TP_ADD_TC(tp, t_precision);
return atf_no_error();