summaryrefslogtreecommitdiff
path: root/tests/include
diff options
context:
space:
mode:
authorjruoho <jruoho@NetBSD.org>2011-08-29 12:50:50 +0000
committerjruoho <jruoho@NetBSD.org>2011-08-29 12:50:50 +0000
commitbc93e5cf8a127d3a75bb51875831ef68fcaaf7b1 (patch)
treeb338a909d3b25ff50942f36a8f2dfd3d8ab7e168 /tests/include
parenta27ac962d217365c3a3cad6972cfee7d9b7fbe5c (diff)
Remove Xfails that are related to the infamous qemu/amd64 floating point
bugs. It appears to be quite difficult to identify the exact Qemu version and setup. These do not fail on the TNF's qemu/amd64 setup, which can be taken as a reference point for expected failures.
Diffstat (limited to 'tests/include')
-rw-r--r--tests/include/sys/t_bitops.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/include/sys/t_bitops.c b/tests/include/sys/t_bitops.c
index 8111d74a24d..12edc45844c 100644
--- a/tests/include/sys/t_bitops.c
+++ b/tests/include/sys/t_bitops.c
@@ -1,4 +1,4 @@
-/* $NetBSD: t_bitops.c,v 1.8 2011/07/07 11:04:30 jruoho Exp $ */
+/* $NetBSD: t_bitops.c,v 1.9 2011/08/29 12:50:50 jruoho Exp $ */
/*-
* Copyright (c) 2011 The NetBSD Foundation, Inc.
@@ -29,7 +29,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: t_bitops.c,v 1.8 2011/07/07 11:04:30 jruoho Exp $");
+__RCSID("$NetBSD: t_bitops.c,v 1.9 2011/08/29 12:50:50 jruoho Exp $");
#include <atf-c.h>
@@ -174,10 +174,6 @@ ATF_TC_BODY(ilog2_log2, tc)
*/
ATF_REQUIRE(uname(&utsname) == 0);
- if (strcmp(utsname.machine, "amd64") == 0 &&
- system("cpuctl identify 0 | grep -q QEMU") == 0)
- atf_tc_expect_fail("PR misc/44767");
-
for (i = 1; i < UINT32_MAX; i += UINT16_MAX) {
x = log2(i);