diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-29 19:35:32 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-29 19:35:32 +0000 |
commit | a0e5d73a78dde538353c5bfa8d92d619d3800586 (patch) | |
tree | adcd3315dd5e5da3da43e7139ee651c9ed5870b0 /stdio-common | |
parent | a5707dad25fcc5093f9cc220226b142fae471718 (diff) | |
download | glibc-a0e5d73a78dde538353c5bfa8d92d619d3800586.tar.gz glibc-a0e5d73a78dde538353c5bfa8d92d619d3800586.tar.xz glibc-a0e5d73a78dde538353c5bfa8d92d619d3800586.zip |
Update.
* stdio-common/tst-printf.c: Add test for above problem.
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/tst-printf.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stdio-common/tst-printf.c b/stdio-common/tst-printf.c index 28d5c5116a..0d40e29413 100644 --- a/stdio-common/tst-printf.c +++ b/stdio-common/tst-printf.c @@ -188,6 +188,8 @@ I am ready for my first lesson today."; printf ("%#03x\n", 1); + printf ("something really insane: %.10000f", 1.0); + { double d = FLT_MIN; int niter = 17; |