From 8966525a60bf6b1747f9b24f538be5c5c08fda09 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 26 Feb 1998 12:42:44 +0000 Subject: [PATCH] (tests): Add fail case for above. --- stdlib/tst-strtod.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 } }; -- 2.47.2