Only expect :encode_tv_random_million to fail on 64-bit platforms

It passes on i386

MFC after:	1 week
Sponsored by:	EMC / Isilon Storage Division
This commit is contained in:
ngie 2016-08-16 20:35:36 +00:00
parent 347d2809fd
commit 1e7f2891b9

View File

@ -204,7 +204,10 @@ ATF_TC_BODY(encode_tv_random_million, tc)
struct timeval tv;
long k;
atf_tc_expect_fail("the testcase violates FLT_EPSILON");
#ifdef __LP64__
atf_tc_expect_fail("the testcase violates FLT_EPSILON on 64-bit "
"platforms, e.g. amd64");
#endif
ATF_REQUIRE_MSG(unsetenv("TZ") == 0, "unsetting TZ failed; errno=%d", errno);