diff options
| author | David Schultz <das@FreeBSD.org> | 2012-01-14 21:09:54 +0000 |
|---|---|---|
| committer | David Schultz <das@FreeBSD.org> | 2012-01-14 21:09:54 +0000 |
| commit | 5d9e02dba4405ed68b2fbae1c45420eec6f10e75 (patch) | |
| tree | 2a5edd4fedb6b047be732674e333234454321c0b /tools/regression/lib/libc | |
| parent | 5af5af75aaf21d21e641c3e4a7168d6954bdbeb5 (diff) | |
Notes
Diffstat (limited to 'tools/regression/lib/libc')
| -rw-r--r-- | tools/regression/lib/libc/stdio/test-printfloat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/regression/lib/libc/stdio/test-printfloat.c b/tools/regression/lib/libc/stdio/test-printfloat.c index 97bb1a8642496..806a85ec1b2ff 100644 --- a/tools/regression/lib/libc/stdio/test-printfloat.c +++ b/tools/regression/lib/libc/stdio/test-printfloat.c @@ -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"); |
