Date: Sat, 14 Jan 2012 21:09:55 +0000 (UTC) From: David Schultz <das@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r230114 - head/tools/regression/lib/libc/stdio Message-ID: <201201142109.q0EL9tHp049002@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: das Date: Sat Jan 14 21:09:54 2012 New Revision: 230114 URL: http://svn.freebsd.org/changeset/base/230114 Log: Update the tests for arm and other ports where long double is the same as double, similar to r178141. Modified: head/tools/regression/lib/libc/stdio/test-printfloat.c Modified: head/tools/regression/lib/libc/stdio/test-printfloat.c ============================================================================== --- head/tools/regression/lib/libc/stdio/test-printfloat.c Sat Jan 14 19:38:24 2012 (r230113) +++ head/tools/regression/lib/libc/stdio/test-printfloat.c Sat Jan 14 21:09:54 2012 (r230114) @@ -266,9 +266,9 @@ main(int argc, char *argv[]) testfmt("0x1p-16494", "%La", 0x1p-16494L); testfmt("0x1.2345p-16384", "%La", 0x1.2345p-16384L); #else - testfmt("0xc.90fdaa22168cp-2", "%La", 0x3.243f6a8885a31p0L); - testfmt("0x8p-1077", "%La", 0x1p-1074L); - testfmt("0x9.8765p-1024", "%La", 0x9.8765p-1024L); + testfmt("0x1.921fb54442d18p+1", "%La", 0x3.243f6a8885a31p0L); + testfmt("0x1p-1074", "%La", 0x1p-1074L); + testfmt("0x1.30ecap-1021", "%La", 0x9.8765p-1024L); #endif printf("ok 10 - printfloat\n");
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201201142109.q0EL9tHp049002>