aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEnji Cooper <ngie@FreeBSD.org>2016-08-16 20:32:08 +0000
committerEnji Cooper <ngie@FreeBSD.org>2016-08-16 20:32:08 +0000
commitef5c8d54606b5ccb4ea5ae48154fdd2e31e52818 (patch)
tree89147ef16d025d854cf27831d635acbbf49cd025 /tests
parent532c3cde6a48dfead0d18fc3e04558e54245867d (diff)
downloadsrc-ef5c8d54606b5ccb4ea5ae48154fdd2e31e52818.tar.gz
src-ef5c8d54606b5ccb4ea5ae48154fdd2e31e52818.zip
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
Notes
Notes: svn path=/projects/netbsd-tests-update-12/; revision=304237
Diffstat (limited to 'tests')
-rw-r--r--tests/sys/kern/acct/acct_test.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/sys/kern/acct/acct_test.c b/tests/sys/kern/acct/acct_test.c
index 2bf221cddf2b..c2e9673df8f2 100644
--- a/tests/sys/kern/acct/acct_test.c
+++ b/tests/sys/kern/acct/acct_test.c
@@ -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);