From: Ulrich Drepper Date: Thu, 26 Feb 1998 12:42:44 +0000 (+0000) Subject: (tests): Add fail case for above. X-Git-Tag: cvs/before-sparc-2_0_x-branch~207 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8966525a60bf6b1747f9b24f538be5c5c08fda09;p=thirdparty%2Fglibc.git (tests): Add fail case for above. --- diff --git a/stdlib/tst-strtod.c b/stdlib/tst-strtod.c index 316fff93b9f..3cc907f2ac6 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 } };