From 6ae3e40f2f996600a452e49ea841c2aaf57f2e4b Mon Sep 17 00:00:00 2001 From: jruoho Date: Tue, 12 Apr 2011 02:52:20 +0000 Subject: PR lib/33262 should be fixed; remove expected failure. --- tests/lib/libc/stdlib/t_strtod.c | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'tests/lib/libc/stdlib') diff --git a/tests/lib/libc/stdlib/t_strtod.c b/tests/lib/libc/stdlib/t_strtod.c index 53d8b74c391..45b2d1d27f3 100644 --- a/tests/lib/libc/stdlib/t_strtod.c +++ b/tests/lib/libc/stdlib/t_strtod.c @@ -1,4 +1,4 @@ -/* $NetBSD: t_strtod.c,v 1.5 2011/04/10 10:23:45 jruoho Exp $ */ +/* $NetBSD: t_strtod.c,v 1.6 2011/04/12 02:52:20 jruoho Exp $ */ /*- * Copyright (c) 2011 The NetBSD Foundation, Inc. @@ -32,7 +32,7 @@ /* Public domain, Otto Moerbeek , 2006. */ #include -__RCSID("$NetBSD: t_strtod.c,v 1.5 2011/04/10 10:23:45 jruoho Exp $"); +__RCSID("$NetBSD: t_strtod.c,v 1.6 2011/04/12 02:52:20 jruoho Exp $"); #include #include @@ -106,19 +106,10 @@ ATF_TC_BODY(strtod_inf, tc) { #ifndef __vax__ - const char *m_arch; long double ld; double d; float f; - m_arch = atf_config_get("atf_arch"); - - if (strcmp(m_arch, "x86_64") == 0) - atf_tc_expect_fail("PR lib/33262"); - - if (system("cpuctl identify 0 | grep -q QEMU") == 0) - atf_tc_expect_fail("PR lib/33262"); - d = strtod("INF", NULL); ATF_REQUIRE(isinf(d) != 0); -- cgit