summary refs log tree commit diff
path: root/time
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-03-03 19:49:23 +0000
committerUlrich Drepper <drepper@redhat.com>2000-03-03 19:49:23 +0000
commitfc304e02a76a8410266c4e7daa142b306f1ea446 (patch)
treef52a0a5b683d52b1b99be070de961c6a6210a31d /time
parentecb06196255694c2d81a5bc733bea07e24ab3361 (diff)
downloadglibc-fc304e02a76a8410266c4e7daa142b306f1ea446.tar.gz
glibc-fc304e02a76a8410266c4e7daa142b306f1ea446.tar.xz
glibc-fc304e02a76a8410266c4e7daa142b306f1ea446.zip
Update.
2000-03-01  Andreas Jaeger  <aj@suse.de>

	* time/Makefile (tst-getdate-ENV): New flag to pass DATEMSK.
	(tests): Added tst-getdate.

	* time/tst-getdate.c: New file.

	* time/datemsk: New file, needed for tst-getdate.
Diffstat (limited to 'time')
-rw-r--r--time/Makefile5
-rw-r--r--time/datemsk1
-rw-r--r--time/tst-getdate.c115
3 files changed, 120 insertions, 1 deletions
diff --git a/time/Makefile b/time/Makefile
index 948a48bcde..dc110acbf3 100644
--- a/time/Makefile
+++ b/time/Makefile
@@ -33,7 +33,8 @@ routines := offtime asctime clock ctime ctime_r difftime \
 	    timer_create timer_delete timer_getoverr	 \
 	    timer_gettime timer_settime
 
-tests	:= test_time clocktest tst-posixtz tst-strptime tst_wcsftime
+tests	:= test_time clocktest tst-posixtz tst-strptime tst_wcsftime \
+	   tst-getdate
 
 include ../Rules
 
@@ -46,3 +47,5 @@ CFLAGS-tzset.c = $(tz-cflags)
 
 # Don't warn about Y2k problem in strftime format string.
 CFLAGS-test_time.c = -Wno-format
+
+tst-getdate-ENV= DATEMSK=datemsk
diff --git a/time/datemsk b/time/datemsk
new file mode 100644
index 0000000000..9ed24a4b5e
--- /dev/null
+++ b/time/datemsk
@@ -0,0 +1 @@
+%H:%M:%S %F
diff --git a/time/tst-getdate.c b/time/tst-getdate.c
new file mode 100644
index 0000000000..7f90629620
--- /dev/null
+++ b/time/tst-getdate.c
@@ -0,0 +1,115 @@
+/* Test for getdate.
+   Copyright (C) 2000 Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+   Contributed by Andreas Jaeger <aj@suse.de>, 2000.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Library General Public License as
+   published by the Free Software Foundation; either version 2 of the
+   License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+
+   You should have received a copy of the GNU Library General Public
+   License along with the GNU C Library; see the file COPYING.LIB.  If not,
+   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+   Boston, MA 02111-1307, USA.  */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <time.h>
+
+static const struct
+{
+  const char *str;
+  int err;
+  struct tm tm;
+} tests [] =
+{
+  {"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}}
+};
+
+void
+report_date_error (int err)
+{
+  switch(err)
+    {
+    case 1:
+      printf ("The environment variable DATEMSK is not defined or null.\n");
+      break;
+    case 2:
+      printf ("The template file denoted by the DATEMSK environment variable cannot be opened.\n");
+      break;
+    case 3:
+      printf ("Information about the template file cannot retrieved.\n");
+      break;
+    case 4:
+      printf ("The template file is not a regular file.\n");
+      break;
+    case 5:
+      printf ("An I/O error occurred while reading the template file.\n");
+      break;
+    case 6:
+      printf ("Not enough memory available to execute the function.\n");
+      break;
+    case 7:
+      printf ("The template file contains no matching template.\n");
+      break;
+    case 8:
+      printf ("The input date is invalid, but would match a template otherwise.\n");
+      break;
+    default:
+      printf("Unknown error code.\n");
+      break;
+    }
+}
+
+
+int
+main (void)
+{
+  int errors = 0;
+  int i;
+  struct tm *tm;
+  
+  setenv ("TZ", "Universal", 1);
+
+  for (i = 0; i < sizeof (tests) / sizeof (tests[0]); ++i)
+    {
+      tm = getdate (tests[i].str);
+      if (getdate_err != tests[i].err)
+	{
+	  printf ("Failure for getdate (\"%s\"):\n", tests[i].str);
+	  printf ("getdate_err should be %d but returned: %d which means:\n",
+		  tests[i].err, getdate_err);
+	  report_date_error (getdate_err);
+	  ++errors;
+	}
+      else if (tests[i].tm.tm_mon != tm->tm_mon
+	       || tests[i].tm.tm_year != tm->tm_year
+	       || tests[i].tm.tm_mday != tm->tm_mday
+	       || tests[i].tm.tm_hour != tm->tm_hour
+	       || tests[i].tm.tm_min != tm->tm_min
+	       || tests[i].tm.tm_sec != tm->tm_sec)
+	{
+	  printf ("Failure for getdate (\"%s\"):\n", tests[i].str);
+	  printf ("struct tm is:  %d-%d-%d %d:%d:%d\n",
+		  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_hour, tests[i].tm.tm_min, tests[i].tm.tm_sec);
+	}
+      
+	       
+    }
+  if (!errors)
+    printf ("No errors found.\n");
+  return errors != 0;
+}