From 36f76c510b6bfffd5f9d5bac65a8818a6f5968d1 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Sun, 20 Aug 2000 10:28:04 +0000 Subject: Increase error in case of wrong conversion. Fix typo in test case. --- time/tst-getdate.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'time/tst-getdate.c') diff --git a/time/tst-getdate.c b/time/tst-getdate.c index 7f90629620..8fdfeb6dea 100644 --- a/time/tst-getdate.c +++ b/time/tst-getdate.c @@ -32,7 +32,7 @@ static const struct { {"21:01:10 1999-1-31", 0, {10, 1, 21, 31, 0, 99, 0, 0, 0}}, {"21:01:10 1999-2-28", 0, {10, 1, 21, 28, 1, 99, 0, 0, 0}}, - {"16:30:46 2000-2-29", 0, {46, 31,16, 29, 1, 100, 0, 0, 0}} + {"16:30:46 2000-2-29", 0, {46, 30,16, 29, 1, 100, 0, 0, 0}} }; void @@ -103,8 +103,10 @@ main (void) tm->tm_year+1900, tm->tm_mon, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec); printf ("but should be: %d-%d-%d %d:%d:%d\n", - tests[i].tm.tm_year+1900, tests[i].tm.tm_mon, tests[i].tm.tm_mday, + tests[i].tm.tm_year+1900, tests[i].tm.tm_mon, + tests[i].tm.tm_mday, tests[i].tm.tm_hour, tests[i].tm.tm_min, tests[i].tm.tm_sec); + ++errors; } -- cgit v1.2.3