| 
									
										
										
										
											2007-10-14 09:15:45 +00:00
										 |  |  | /* Copyright (C) 1998, 1999, 2000, 2005, 2007 Free Software Foundation, Inc.
 | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  |    This file is part of the GNU C Library. | 
					
						
							| 
									
										
										
										
											2000-12-27 20:26:07 +00:00
										 |  |  |    Contributed by Andreas Jaeger <aj@suse.de>, 1998. | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    The GNU C Library is free software; you can redistribute it and/or | 
					
						
							| 
									
										
										
										
											2001-07-06 04:58:11 +00:00
										 |  |  |    modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |    License as published by the Free Software Foundation; either | 
					
						
							|  |  |  |    version 2.1 of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    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 | 
					
						
							| 
									
										
										
										
											2001-07-06 04:58:11 +00:00
										 |  |  |    Lesser General Public License for more details. | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-06 04:58:11 +00:00
										 |  |  |    You should have received a copy of the GNU Lesser General Public | 
					
						
							|  |  |  |    License along with the GNU C Library; if not, write to the Free | 
					
						
							|  |  |  |    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA | 
					
						
							|  |  |  |    02111-1307 USA.  */ | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <time.h>
 | 
					
						
							|  |  |  | #include <stdio.h>
 | 
					
						
							|  |  |  | #include <stdlib.h>
 | 
					
						
							| 
									
										
										
										
											1998-07-04 10:39:13 +00:00
										 |  |  | #include <string.h>
 | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  | #include <unistd.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int failed = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct test_times | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   const char *name; | 
					
						
							|  |  |  |   int daylight; | 
					
						
							|  |  |  |   int timezone; | 
					
						
							| 
									
										
										
										
											1998-07-04 10:39:13 +00:00
										 |  |  |   const char *tzname[2]; | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static const struct test_times tests[] = | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											1999-03-30 18:47:32 +00:00
										 |  |  |   { "Europe/Amsterdam", 1, -3600, { "CET", "CEST" }}, | 
					
						
							| 
									
										
										
										
											1998-07-04 10:39:13 +00:00
										 |  |  |   { "Europe/Berlin", 1, -3600, { "CET", "CEST" }}, | 
					
						
							| 
									
										
										
										
											1999-03-30 18:47:32 +00:00
										 |  |  |   { "Europe/London", 1, 0, { "GMT", "BST" }}, | 
					
						
							| 
									
										
										
										
											1998-07-04 10:39:13 +00:00
										 |  |  |   { "Universal", 0, 0, {"UTC", "UTC" }}, | 
					
						
							|  |  |  |   { "Australia/Melbourne", 1, -36000, { "EST", "EST" }}, | 
					
						
							| 
									
										
										
										
											1999-08-18 04:14:16 +00:00
										 |  |  |   { "America/Sao_Paulo", 1, 10800, {"BRT", "BRST" }}, | 
					
						
							| 
									
										
										
										
											1998-11-13 13:25:47 +00:00
										 |  |  |   { "America/Chicago", 1, 21600, {"CST", "CDT" }}, | 
					
						
							| 
									
										
										
										
											2005-09-07 19:55:12 +00:00
										 |  |  |   { "America/Indiana/Indianapolis", 1, 18000, {"EST", "EDT" }}, | 
					
						
							| 
									
										
										
										
											1998-07-04 10:39:13 +00:00
										 |  |  |   { "America/Los_Angeles", 1, 28800, {"PST", "PDT" }}, | 
					
						
							| 
									
										
										
										
											1999-03-30 18:47:32 +00:00
										 |  |  |   { "Pacific/Auckland", 1, -43200, { "NZST", "NZDT" }}, | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  |   { NULL, 0, 0 } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-08-30 19:23:15 +00:00
										 |  |  | /* This string will be used for `putenv' calls.  */ | 
					
						
							|  |  |  | char envstring[100]; | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-12-27 20:26:07 +00:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  | print_tzvars (void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   printf ("tzname[0]: %s\n", tzname[0]); | 
					
						
							|  |  |  |   printf ("tzname[1]: %s\n", tzname[1]); | 
					
						
							|  |  |  |   printf ("daylight: %d\n", daylight); | 
					
						
							|  |  |  |   printf ("timezone: %ld\n", timezone); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-12-27 20:26:07 +00:00
										 |  |  | static void | 
					
						
							| 
									
										
										
										
											1998-07-04 10:39:13 +00:00
										 |  |  | check_tzvars (const char *name, int dayl, int timez, const char *const tznam[]) | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											1998-07-04 10:39:13 +00:00
										 |  |  |   int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  |   if (daylight != dayl) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											1999-03-30 18:47:32 +00:00
										 |  |  |       printf ("*** Timezone: %s, daylight is: %d but should be: %d\n", | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  | 	      name, daylight, dayl); | 
					
						
							|  |  |  |       ++failed; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   if (timezone != timez) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											1999-03-30 18:47:32 +00:00
										 |  |  |       printf ("*** Timezone: %s, timezone is: %ld but should be: %d\n", | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  | 	      name, timezone, timez); | 
					
						
							|  |  |  |       ++failed; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											1998-07-04 10:39:13 +00:00
										 |  |  |   for (i = 0; i <= 1; ++i) | 
					
						
							|  |  |  |     if (strcmp (tzname[i], tznam[i]) != 0) | 
					
						
							|  |  |  |       { | 
					
						
							| 
									
										
										
										
											1999-03-30 18:47:32 +00:00
										 |  |  | 	printf ("*** Timezone: %s, tzname[%d] is: %s but should be: %s\n", | 
					
						
							| 
									
										
										
										
											1998-07-04 10:39:13 +00:00
										 |  |  | 		name, i, tzname[i], tznam[i]); | 
					
						
							|  |  |  | 	++failed; | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | main (int argc, char ** argv) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |   time_t t; | 
					
						
							|  |  |  |   const struct test_times *pt; | 
					
						
							|  |  |  |   char buf[BUFSIZ]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-09-14 11:43:26 +00:00
										 |  |  |   /* This should be: Fri May 15 01:02:16 1998 (UTC).  */ | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  |   t = 895194136; | 
					
						
							| 
									
										
										
										
											1998-09-14 11:43:26 +00:00
										 |  |  |   printf ("We use this date: %s\n", asctime (gmtime (&t))); | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |   for (pt = tests; pt->name != NULL; ++pt) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |       /* Start with a known state */ | 
					
						
							|  |  |  |       printf ("Checking timezone %s\n", pt->name); | 
					
						
							|  |  |  |       sprintf (buf, "TZ=%s", pt->name); | 
					
						
							|  |  |  |       if (putenv (buf)) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 	  puts ("putenv failed."); | 
					
						
							|  |  |  | 	  failed = 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |       tzset (); | 
					
						
							|  |  |  |       print_tzvars (); | 
					
						
							| 
									
										
										
										
											1998-07-04 10:39:13 +00:00
										 |  |  |       check_tzvars (pt->name, pt->daylight, pt->timezone, pt->tzname); | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |       /* calling localtime shouldn't make a difference */ | 
					
						
							|  |  |  |       localtime (&t); | 
					
						
							|  |  |  |       print_tzvars (); | 
					
						
							| 
									
										
										
										
											1998-07-04 10:39:13 +00:00
										 |  |  |       check_tzvars (pt->name, pt->daylight, pt->timezone, pt->tzname); | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-11 20:13:43 +00:00
										 |  |  |   /* From a post of Scott Harrington <seh4@ix.netcom.com> to the timezone
 | 
					
						
							| 
									
										
										
										
											1998-11-13 13:25:47 +00:00
										 |  |  |      mailing list.  */ | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     struct tm tmBuf = {0, 0, 0, 10, 3, 98, 0, 0, -1}; | 
					
						
							|  |  |  |     char buf[200]; | 
					
						
							| 
									
										
										
										
											1999-08-30 19:23:15 +00:00
										 |  |  |     strcpy (envstring, "TZ=Europe/London"); | 
					
						
							|  |  |  |     putenv (envstring); | 
					
						
							| 
									
										
										
										
											1998-11-13 13:25:47 +00:00
										 |  |  |     t = mktime (&tmBuf); | 
					
						
							|  |  |  |     snprintf (buf, sizeof (buf), "TZ=%s %ld %d %d %d %d %d %d %d %d %d", | 
					
						
							|  |  |  | 	      getenv ("TZ"), t, | 
					
						
							|  |  |  | 	      tmBuf.tm_sec, tmBuf.tm_min, tmBuf.tm_hour, | 
					
						
							|  |  |  | 	      tmBuf.tm_mday, tmBuf.tm_mon, tmBuf.tm_year, | 
					
						
							|  |  |  | 	      tmBuf.tm_wday, tmBuf.tm_yday, tmBuf.tm_isdst); | 
					
						
							|  |  |  |     fputs (buf, stdout); | 
					
						
							|  |  |  |     puts (" should be"); | 
					
						
							| 
									
										
										
										
											1999-01-11 20:13:43 +00:00
										 |  |  |     puts ("TZ=Europe/London 892162800 0 0 0 10 3 98 5 99 1"); | 
					
						
							| 
									
										
										
										
											1999-03-30 18:47:32 +00:00
										 |  |  |     if (strcmp (buf, "TZ=Europe/London 892162800 0 0 0 10 3 98 5 99 1") != 0) | 
					
						
							|  |  |  |       { | 
					
						
							|  |  |  | 	failed = 1; | 
					
						
							|  |  |  | 	fputs (" FAILED ***", stdout); | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											1998-11-13 13:25:47 +00:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   printf("\n"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     struct tm tmBuf = {0, 0, 0, 10, 3, 98, 0, 0, -1}; | 
					
						
							|  |  |  |     char buf[200]; | 
					
						
							| 
									
										
										
										
											1999-08-30 19:23:15 +00:00
										 |  |  |     strcpy (envstring, "TZ=GMT"); | 
					
						
							|  |  |  |     /* No putenv call needed!  */ | 
					
						
							| 
									
										
										
										
											1998-11-13 13:25:47 +00:00
										 |  |  |     t = mktime (&tmBuf); | 
					
						
							|  |  |  |     snprintf (buf, sizeof (buf), "TZ=%s %ld %d %d %d %d %d %d %d %d %d", | 
					
						
							|  |  |  | 	      getenv ("TZ"), t, | 
					
						
							|  |  |  | 	      tmBuf.tm_sec, tmBuf.tm_min, tmBuf.tm_hour, | 
					
						
							|  |  |  | 	      tmBuf.tm_mday, tmBuf.tm_mon, tmBuf.tm_year, | 
					
						
							|  |  |  | 	      tmBuf.tm_wday, tmBuf.tm_yday, tmBuf.tm_isdst); | 
					
						
							|  |  |  |     fputs (buf, stdout); | 
					
						
							|  |  |  |     puts (" should be"); | 
					
						
							|  |  |  |     puts ("TZ=GMT 892166400 0 0 0 10 3 98 5 99 0"); | 
					
						
							| 
									
										
										
										
											1999-03-30 18:47:32 +00:00
										 |  |  |     if (strcmp (buf, "TZ=GMT 892166400 0 0 0 10 3 98 5 99 0") != 0) | 
					
						
							|  |  |  |       { | 
					
						
							|  |  |  | 	failed = 1; | 
					
						
							|  |  |  | 	fputs (" FAILED ***", stdout); | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											1998-11-13 13:25:47 +00:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-05-14 19:14:48 +00:00
										 |  |  |   return failed ? EXIT_FAILURE : EXIT_SUCCESS; | 
					
						
							|  |  |  | } |