2019-01-24 14:04:12 +00:00
|
|
|
/* Verify the behavior of strftime on alternative representation for
|
|
|
|
year.
|
|
|
|
|
2024-01-01 18:12:26 +00:00
|
|
|
Copyright (C) 2019-2024 Free Software Foundation, Inc.
|
2019-01-24 14:04:12 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
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.
|
|
|
|
|
|
|
|
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
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2019-01-24 14:04:12 +00:00
|
|
|
|
|
|
|
#include <array_length.h>
|
2019-04-02 07:37:03 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <support/check.h>
|
|
|
|
#include <stdlib.h>
|
2019-01-24 14:04:12 +00:00
|
|
|
#include <locale.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2019-04-02 07:37:03 +00:00
|
|
|
static const char *locales[] =
|
|
|
|
{
|
2019-04-02 07:42:04 +00:00
|
|
|
"ja_JP.UTF-8", "lo_LA.UTF-8", "th_TH.UTF-8",
|
|
|
|
"zh_TW.UTF-8", "cmn_TW.UTF-8", "hak_TW.UTF-8",
|
|
|
|
"nan_TW.UTF-8", "lzh_TW.UTF-8"
|
2019-04-02 07:37:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Must match locale index into locales array. */
|
|
|
|
enum
|
|
|
|
{
|
2019-04-02 07:42:04 +00:00
|
|
|
ja_JP, lo_LA, th_TH,
|
|
|
|
zh_TW, cmn_TW, hak_TW, nan_TW, lzh_TW
|
2019-04-02 07:37:03 +00:00
|
|
|
};
|
2019-01-24 14:04:12 +00:00
|
|
|
|
|
|
|
static const char *formats[] = { "%EY", "%_EY", "%-EY" };
|
|
|
|
|
2019-04-02 07:37:03 +00:00
|
|
|
typedef struct
|
2019-01-24 14:04:12 +00:00
|
|
|
{
|
|
|
|
const int d, m, y;
|
2019-04-02 07:37:03 +00:00
|
|
|
} date_t;
|
|
|
|
|
|
|
|
static const date_t dates[] =
|
|
|
|
{
|
2019-04-02 07:42:04 +00:00
|
|
|
{ 1, 4, 1910 },
|
|
|
|
{ 31, 12, 1911 },
|
|
|
|
{ 1, 1, 1912 },
|
|
|
|
{ 1, 4, 1913 },
|
2019-04-02 07:37:03 +00:00
|
|
|
{ 1, 4, 1988 },
|
|
|
|
{ 7, 1, 1989 },
|
|
|
|
{ 8, 1, 1989 },
|
|
|
|
{ 1, 4, 1990 },
|
|
|
|
{ 1, 4, 1997 },
|
2019-04-02 07:42:04 +00:00
|
|
|
{ 1, 4, 1998 },
|
|
|
|
{ 1, 4, 2010 },
|
2019-04-02 07:46:55 +00:00
|
|
|
{ 1, 4, 2011 },
|
|
|
|
{ 30, 4, 2019 },
|
|
|
|
{ 1, 5, 2019 }
|
2019-04-02 07:37:03 +00:00
|
|
|
};
|
2019-01-24 14:04:12 +00:00
|
|
|
|
2019-02-08 13:03:14 +00:00
|
|
|
static char ref[array_length (locales)][array_length (formats)]
|
|
|
|
[array_length (dates)][100];
|
2019-01-24 14:04:12 +00:00
|
|
|
|
2019-04-02 07:37:03 +00:00
|
|
|
static bool
|
|
|
|
is_before (const int i, const int d, const int m, const int y)
|
|
|
|
{
|
|
|
|
if (dates[i].y < y)
|
|
|
|
return true;
|
|
|
|
else if (dates[i].y > y)
|
|
|
|
return false;
|
|
|
|
else if (dates[i].m < m)
|
|
|
|
return true;
|
|
|
|
else if (dates[i].m > m)
|
|
|
|
return false;
|
|
|
|
else
|
|
|
|
return dates[i].d < d;
|
|
|
|
}
|
|
|
|
|
2019-01-24 14:04:12 +00:00
|
|
|
static void
|
|
|
|
mkreftable (void)
|
|
|
|
{
|
2019-04-02 07:37:03 +00:00
|
|
|
int i, j, k, yr;
|
|
|
|
const char *era, *sfx;
|
|
|
|
/* Japanese era year to be checked. */
|
|
|
|
static const int yrj[] =
|
|
|
|
{
|
2019-04-02 07:42:04 +00:00
|
|
|
43, 44, 45, 2,
|
2019-04-02 07:46:55 +00:00
|
|
|
63, 64, 1, 2, 9, 10, 22, 23, 31, 1
|
2019-04-02 07:37:03 +00:00
|
|
|
};
|
|
|
|
/* Buddhist calendar year to be checked. */
|
|
|
|
static const int yrb[] =
|
|
|
|
{
|
2019-04-02 07:42:04 +00:00
|
|
|
2453, 2454, 2455, 2456,
|
2019-04-02 07:46:55 +00:00
|
|
|
2531, 2532, 2532, 2533, 2540, 2541, 2553, 2554, 2562, 2562
|
2019-04-02 07:42:04 +00:00
|
|
|
};
|
|
|
|
/* R.O.C. calendar year to be checked. Negative number is prior to
|
|
|
|
Minguo counting up. */
|
|
|
|
static const int yrc[] =
|
|
|
|
{
|
|
|
|
-2, -1, 1, 2,
|
2019-04-02 07:46:55 +00:00
|
|
|
77, 78, 78, 79, 86, 87, 99, 100, 108, 108
|
2019-04-02 07:37:03 +00:00
|
|
|
};
|
2019-01-24 14:04:12 +00:00
|
|
|
|
|
|
|
for (i = 0; i < array_length (locales); i++)
|
|
|
|
for (j = 0; j < array_length (formats); j++)
|
|
|
|
for (k = 0; k < array_length (dates); k++)
|
|
|
|
{
|
2019-04-02 07:37:03 +00:00
|
|
|
if (i == ja_JP)
|
2019-01-24 14:04:12 +00:00
|
|
|
{
|
2019-04-02 07:42:04 +00:00
|
|
|
era = (is_before (k, 30, 7, 1912)) ? "\u660e\u6cbb"
|
|
|
|
: (is_before (k, 25, 12, 1926)) ? "\u5927\u6b63"
|
|
|
|
: (is_before (k, 8, 1, 1989)) ? "\u662d\u548c"
|
2019-04-02 07:46:55 +00:00
|
|
|
: (is_before (k, 1, 5, 2019)) ? "\u5e73\u6210"
|
|
|
|
: "\u4ee4\u548c";
|
2019-04-02 07:37:03 +00:00
|
|
|
yr = yrj[k], sfx = "\u5e74";
|
2019-01-24 14:04:12 +00:00
|
|
|
}
|
2019-04-02 07:37:03 +00:00
|
|
|
else if (i == lo_LA)
|
|
|
|
era = "\u0e9e.\u0eaa. ", yr = yrb[k], sfx = "";
|
|
|
|
else if (i == th_TH)
|
|
|
|
era = "\u0e1e.\u0e28. ", yr = yrb[k], sfx = "";
|
2019-04-02 07:42:04 +00:00
|
|
|
else if (i == zh_TW || i == cmn_TW || i == hak_TW
|
|
|
|
|| i == nan_TW || i == lzh_TW)
|
|
|
|
{
|
|
|
|
era = (is_before (k, 1, 1, 1912)) ? "\u6c11\u524d"
|
|
|
|
: "\u6c11\u570b";
|
|
|
|
yr = yrc[k], sfx = "\u5e74";
|
|
|
|
}
|
2019-01-24 14:04:12 +00:00
|
|
|
else
|
2019-04-02 07:37:03 +00:00
|
|
|
FAIL_EXIT1 ("Invalid table index!");
|
|
|
|
if (yr == 1)
|
|
|
|
sprintf (ref[i][j][k], "%s\u5143%s", era, sfx);
|
|
|
|
else if (j == 0)
|
|
|
|
sprintf (ref[i][j][k], "%s%02d%s", era, abs (yr), sfx);
|
|
|
|
else if (j == 1)
|
|
|
|
sprintf (ref[i][j][k], "%s%2d%s", era, abs (yr), sfx);
|
|
|
|
else if (j == 2)
|
|
|
|
sprintf (ref[i][j][k], "%s%d%s", era, abs (yr), sfx);
|
|
|
|
else
|
|
|
|
FAIL_EXIT1 ("Invalid table index!");
|
2019-01-24 14:04:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
do_test (void)
|
|
|
|
{
|
|
|
|
int i, j, k, result = 0;
|
|
|
|
struct tm ttm;
|
|
|
|
char date[11], buf[100];
|
|
|
|
size_t r, e;
|
|
|
|
|
|
|
|
mkreftable ();
|
|
|
|
for (i = 0; i < array_length (locales); i++)
|
|
|
|
{
|
|
|
|
if (setlocale (LC_ALL, locales[i]) == NULL)
|
|
|
|
{
|
|
|
|
printf ("locale %s does not exist, skipping...\n", locales[i]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
printf ("[%s]\n", locales[i]);
|
|
|
|
for (j = 0; j < array_length (formats); j++)
|
|
|
|
{
|
|
|
|
for (k = 0; k < array_length (dates); k++)
|
|
|
|
{
|
|
|
|
ttm.tm_mday = dates[k].d;
|
2019-04-02 07:37:03 +00:00
|
|
|
ttm.tm_mon = dates[k].m - 1;
|
|
|
|
ttm.tm_year = dates[k].y - 1900;
|
2019-01-24 14:04:12 +00:00
|
|
|
strftime (date, sizeof (date), "%F", &ttm);
|
|
|
|
r = strftime (buf, sizeof (buf), formats[j], &ttm);
|
|
|
|
e = strlen (ref[i][j][k]);
|
|
|
|
printf ("%s\t\"%s\"\t\"%s\"", date, formats[j], buf);
|
|
|
|
if (strcmp (buf, ref[i][j][k]) != 0)
|
|
|
|
{
|
|
|
|
printf ("\tshould be \"%s\"", ref[i][j][k]);
|
|
|
|
if (r != e)
|
|
|
|
printf ("\tgot: %zu, expected: %zu", r, e);
|
|
|
|
result = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
printf ("\tOK");
|
|
|
|
putchar ('\n');
|
|
|
|
}
|
|
|
|
putchar ('\n');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
#include <support/test-driver.c>
|