diff options
| author | David Schultz <das@FreeBSD.org> | 2003-04-14 11:26:32 +0000 |
|---|---|---|
| committer | David Schultz <das@FreeBSD.org> | 2003-04-14 11:26:32 +0000 |
| commit | 3b74a935d67c1fa0c446459db4458a0260add9d3 (patch) | |
| tree | 6b7e0746728367a456c3caf05f0fa70d698f539e | |
| parent | 81ae2e9a4d89ba3af7cc008df88497518f3777fc (diff) | |
Notes
| -rw-r--r-- | tools/regression/lib/libc/stdio/test-printfloat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/regression/lib/libc/stdio/test-printfloat.c b/tools/regression/lib/libc/stdio/test-printfloat.c index 8c697dd3715b..e12d3a6e60b2 100644 --- a/tools/regression/lib/libc/stdio/test-printfloat.c +++ b/tools/regression/lib/libc/stdio/test-printfloat.c @@ -93,6 +93,8 @@ main(int argc, char *argv[]) testfmt("0", "%G", 0.0); testfmt(" 0", "%3.0Lg", 0.0L); + testfmt(" 0", "%5.0f", 0.001); + testfmt("1.0123e+00", "%.4e", 1.0123456789); testfmt("1.0123", "%.4f", 1.0123456789); testfmt("1.012", "%.4g", 1.0123456789); |
