From owner-cvs-all@FreeBSD.ORG Thu Oct 14 02:47:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7689F16A4CE; Thu, 14 Oct 2004 02:47:56 +0000 (GMT) Received: from VARK.MIT.EDU (VARK.MIT.EDU [18.95.3.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19B7C43D1F; Thu, 14 Oct 2004 02:47:56 +0000 (GMT) (envelope-from das@FreeBSD.ORG) Received: from VARK.MIT.EDU (localhost [127.0.0.1]) by VARK.MIT.EDU (8.13.1/8.12.10) with ESMTP id i9E2m5G5057510; Wed, 13 Oct 2004 22:48:05 -0400 (EDT) (envelope-from das@FreeBSD.ORG) Received: (from das@localhost) by VARK.MIT.EDU (8.13.1/8.12.10/Submit) id i9E2m44S057509; Wed, 13 Oct 2004 22:48:04 -0400 (EDT) (envelope-from das@FreeBSD.ORG) Date: Wed, 13 Oct 2004 22:48:04 -0400 From: David Schultz To: Giorgos Keramidas Message-ID: <20041014024804.GA57462@VARK.MIT.EDU> Mail-Followup-To: Giorgos Keramidas , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200410132232.i9DMWCKk045360@repoman.freebsd.org> <20041013224017.GA1433@gothmog.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20041013224017.GA1433@gothmog.gr> cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/tools/regression/lib/libc/stdio test-printfloat.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Oct 2004 02:47:56 -0000 On Thu, Oct 14, 2004, Giorgos Keramidas wrote: > On 2004-10-13 22:32, Giorgos Keramidas wrote: > > Add a regression test for floating-point output in the Greek locale. > > See revision 1.3 of src/share/numericdef/el_GR.ISO8859-7.src > > > > Revision Changes Path > > 1.7 +7 -0 src/tools/regression/lib/libc/stdio/test-printfloat.c > > FWIW, an unrelated bug in the formatting of hexadecimal floating-point > constants breaks this regression test. AFAIK, David Schultz is already > looking into this, in order to have this collection of tests work again :-) Actually, it's an i386-specific gcc bug in the parsing of hexadecimal floating-point constants. I have a good idea of which change between gcc 3.3 and 3.4 broke it, but it looks like it will be difficult to get a gcc developer to investigate. This is because it only happens on platforms that have an extended precision long double format but only double precision evaluation, and FreeBSD/i386 is the only platform like that. See also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=17778