mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 23:30:07 +00:00
d5cd47bd3e
1998-05-21 Andreas Jaeger <aj@arthur.rhein-neckar.de> * timezone/test-tz.c: The test with TZ=UTC0 seems to work - enable it.
57 lines
1.0 KiB
C
57 lines
1.0 KiB
C
#include <stdlib.h>
|
|
#include <time.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
|
|
struct {
|
|
const char * env;
|
|
time_t expected;
|
|
} tests[] = {
|
|
{"TZ=MST", 832935315},
|
|
{"TZ=", 832910115},
|
|
{"TZ=:UTC", 832910115},
|
|
{"TZ=UTC", 832910115},
|
|
{"TZ=UTC0", 832910115}
|
|
};
|
|
|
|
|
|
int
|
|
main (int argc, char ** argv)
|
|
{
|
|
int errors = 0;
|
|
struct tm tm;
|
|
time_t t;
|
|
unsigned int i;
|
|
|
|
memset (&tm, 0, sizeof (tm));
|
|
tm.tm_isdst = 0;
|
|
tm.tm_year = 96; /* years since 1900 */
|
|
tm.tm_mon = 4;
|
|
tm.tm_mday = 24;
|
|
tm.tm_hour = 3;
|
|
tm.tm_min = 55;
|
|
tm.tm_sec = 15;
|
|
|
|
for (i = 0; i < sizeof (tests) / sizeof (tests[0]); ++i)
|
|
{
|
|
putenv (tests[i].env);
|
|
t = mktime (&tm);
|
|
if (t != tests[i].expected)
|
|
{
|
|
printf ("%s: flunked test %u (expected %lu, got %lu)\n",
|
|
argv[0], i, (long) tests[i].expected, (long) t);
|
|
++errors;
|
|
}
|
|
}
|
|
if (errors == 0)
|
|
{
|
|
puts ("No errors.");
|
|
exit (EXIT_SUCCESS);
|
|
}
|
|
else
|
|
{
|
|
printf ("%d errors.\n", errors);
|
|
exit (EXIT_FAILURE);
|
|
}
|
|
}
|