summaryrefslogtreecommitdiff
path: root/stdlib
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-02-26 12:42:44 +0000
committerUlrich Drepper <drepper@redhat.com>1998-02-26 12:42:44 +0000
commit8966525a60bf6b1747f9b24f538be5c5c08fda09 (patch)
treed0a1f10a28431b7a36f0ae3d76d0ba07e1703a73 /stdlib
parent883ebe6692ebf0ce7e51af2a688484662804f47c (diff)
(tests): Add fail case for above.
Diffstat (limited to 'stdlib')
-rw-r--r--stdlib/tst-strtod.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/stdlib/tst-strtod.c b/stdlib/tst-strtod.c
index 316fff93b9..3cc907f2ac 100644
--- a/stdlib/tst-strtod.c
+++ b/stdlib/tst-strtod.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1996, 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -38,6 +38,7 @@ static const struct ltest tests[] =
{ "1e20", 1e20, '\0', 0 },
{ "0e-19", 0, '\0', 0 },
{ "4\00012", 4.0, '\0', 0 },
+ { "5.9e-76", 5.9e-76, '\0', 0 },
{ NULL, 0, '\0', 0 }
};