mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 23:30:07 +00:00
390955cbde
1999-01-11 Ulrich Drepper <drepper@cygnus.com> * ctype/Versions [GLIBC_2.0]: Export __ctype32_b. * include/wctype.h: Declare __iswctype. * stdio-common/vfscanf.c (__vfscanf): Use __iswspace instead of iswspace. * wctype/Makefile (routines): Add wcextra_l. * wctype/wcextra.c (iswblank): Implement function here and don't use __iswctype. (__iswblank_l): Move definition to... * wctype/wcextra_l.c: ...here. New file. * wctype/wcfuncs.c: Really implement functions and don't call __iswctype or __towctrans. * wctype/wctype.h: Change isw* and tow* macros. Don't call __iswctype or __towctrans. Instead optimize constant argument case. * iconv/gconv.h: Fix typos. * iconv/skeleton.c: Fix typos. Optimize init function a bit. Correctly emit escape sequence to return to initial state in conversion function. * iconvdata/iso-2022-jp.c (gconv_init): Correctly initialize max_needed_to element. * manual/mbyte.texi: Removed. This is now described in charset.texi. * manual/charset.texi: New file. * manual/Makefile (chapters): Replace mbyte by charset. * manual/ctype.texi: Document wide character functions. * manual/intro.texi: Fix reference to mbyte chapter. * manual/lang.texi: Likewise. * manual/locale.texi: Likewise. * manual/stdio.texi: Likewise. * manual/string.texi: Fix @node line for new charset chapter. * manual/libc.texinfo (UPDATED): Updated. Also update copyright years. * manual/memory.texi (savestring): Optimize code to give a good example. * manual/filesys.texi: Fix wording. Patches by Jim Meyering. * nscd/nscd_getgr_r.c: Include stdint.h to get uintptr_t definition. * nscd/nscd_getpw_r.c: Likewise. * nscd/nscd_gethst_r.c: Likewise. * stdlib/stdtold_l.c: Always include xlocale.h. 1999-01-11 Geoffrey Keating <geoffk@ozemail.com.au> * stdlib/fpioconst.h (LDBL_MAX_10_EXP_LOG): Define to be same as DBL_MAX_10_EXP_LOG if there is no long double. (_fpioconst_pow10): Always use size as LDBL_MAX_10_EXP_LOG to match printf_fp.c. 1999-01-10 Andreas Jaeger <aj@arthur.rhein-neckar.de> * timezone/Makefile ($(testdata)/GB): Changed to ... ($(testdata)/Europe/London): ... for tst-timezone test. ($(objpfx)tst-timezone.out): Change GB to Europe/London. * timezone/tst-timezone.c (main): Enable DST switching test, change GB to Europe/London. 1999-01-10 Philip Blundell <philb@gnu.org> * socket/Makefile (headers): Remove bits/sockunion.h. 1999-01-09 Philip Blundell <philb@gnu.org> * socket/sys/socket.h: Don't include <bits/sockunion.h>. * sysdeps/generic/bits/sockunion.h: Deleted. * sysdeps/unix/sysv/linux/bits/sockunion.h: Likewise. 1999-01-08 H.J. Lu <hjl@gnu.org> * io/fts.c (fts_close): Don't access memory after having it freed.
155 lines
4.4 KiB
C
155 lines
4.4 KiB
C
/* Copyright (C) 1998, 1999 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
Contributed by Andreas Jaeger <aj@arthur.rhein-neckar.de>, 1998.
|
|
|
|
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 <time.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
int failed = 0;
|
|
|
|
struct test_times
|
|
{
|
|
const char *name;
|
|
int daylight;
|
|
int timezone;
|
|
const char *tzname[2];
|
|
};
|
|
|
|
static const struct test_times tests[] =
|
|
{
|
|
{ "Europe/Berlin", 1, -3600, { "CET", "CEST" }},
|
|
{ "Universal", 0, 0, {"UTC", "UTC" }},
|
|
{ "Australia/Melbourne", 1, -36000, { "EST", "EST" }},
|
|
{ "America/Sao_Paulo", 1, 10800, {"EST", "EDT" }},
|
|
{ "America/Chicago", 1, 21600, {"CST", "CDT" }},
|
|
{ "America/Los_Angeles", 1, 28800, {"PST", "PDT" }},
|
|
{ "Asia/Tokyo", 0, -32400, {"JST", "JST" }},
|
|
{ NULL, 0, 0 }
|
|
};
|
|
|
|
|
|
void
|
|
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);
|
|
}
|
|
|
|
|
|
void
|
|
check_tzvars (const char *name, int dayl, int timez, const char *const tznam[])
|
|
{
|
|
int i;
|
|
|
|
if (daylight != dayl)
|
|
{
|
|
printf ("Timezone: %s, daylight is: %d but should be: %d\n",
|
|
name, daylight, dayl);
|
|
++failed;
|
|
}
|
|
if (timezone != timez)
|
|
{
|
|
printf ("Timezone: %s, timezone is: %ld but should be: %d\n",
|
|
name, timezone, timez);
|
|
++failed;
|
|
}
|
|
for (i = 0; i <= 1; ++i)
|
|
if (strcmp (tzname[i], tznam[i]) != 0)
|
|
{
|
|
printf ("Timezone: %s, tzname[%d] is: %s but should be: %s\n",
|
|
name, i, tzname[i], tznam[i]);
|
|
++failed;
|
|
}
|
|
}
|
|
|
|
|
|
int
|
|
main (int argc, char ** argv)
|
|
{
|
|
time_t t;
|
|
const struct test_times *pt;
|
|
char buf[BUFSIZ];
|
|
|
|
/* This should be: Fri May 15 01:02:16 1998 (UTC). */
|
|
t = 895194136;
|
|
printf ("We use this date: %s\n", asctime (gmtime (&t)));
|
|
|
|
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 ();
|
|
check_tzvars (pt->name, pt->daylight, pt->timezone, pt->tzname);
|
|
|
|
/* calling localtime shouldn't make a difference */
|
|
localtime (&t);
|
|
print_tzvars ();
|
|
check_tzvars (pt->name, pt->daylight, pt->timezone, pt->tzname);
|
|
}
|
|
|
|
/* From a post of Scott Harrington <seh4@ix.netcom.com> to the timezone
|
|
mailing list. */
|
|
{
|
|
struct tm tmBuf = {0, 0, 0, 10, 3, 98, 0, 0, -1};
|
|
char buf[200];
|
|
putenv ("TZ=Europe/London");
|
|
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=Europe/London 892162800 0 0 0 10 3 98 5 99 1");
|
|
failed |= strcmp (buf, "TZ=Europe/London 892162800 0 0 0 10 3 98 5 99 1") != 0;
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
{
|
|
struct tm tmBuf = {0, 0, 0, 10, 3, 98, 0, 0, -1};
|
|
char buf[200];
|
|
putenv ("TZ=GMT");
|
|
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");
|
|
failed |= strcmp (buf, "TZ=GMT 892166400 0 0 0 10 3 98 5 99 0") != 0;
|
|
}
|
|
|
|
return failed ? EXIT_FAILURE : EXIT_SUCCESS;
|
|
}
|