1997-03-05 00:35:19 +00:00
|
|
|
/* Test collation function using real data.
|
2024-01-01 18:12:26 +00:00
|
|
|
Copyright (C) 1997-2024 Free Software Foundation, Inc.
|
1997-03-05 00:35:19 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
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.
|
1997-03-05 00:35:19 +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.
|
1997-03-05 00:35:19 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public
|
2012-02-09 23:18:22 +00:00
|
|
|
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/>. */
|
1997-03-05 00:35:19 +00:00
|
|
|
|
|
|
|
#include <ctype.h>
|
2003-07-27 14:22:12 +00:00
|
|
|
#include <error.h>
|
1997-03-05 00:35:19 +00:00
|
|
|
#include <locale.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
|
|
|
|
struct lines
|
|
|
|
{
|
2003-07-15 08:59:35 +00:00
|
|
|
char *key;
|
|
|
|
char *line;
|
1997-03-05 00:35:19 +00:00
|
|
|
};
|
|
|
|
|
2000-05-23 08:43:26 +00:00
|
|
|
static int xstrcoll (const void *, const void *);
|
1997-03-05 00:35:19 +00:00
|
|
|
|
2021-11-03 19:20:05 +00:00
|
|
|
static int
|
|
|
|
signum (int n)
|
|
|
|
{
|
|
|
|
return (0 < n) - (n < 0);
|
|
|
|
}
|
|
|
|
|
1997-03-05 00:35:19 +00:00
|
|
|
int
|
|
|
|
main (int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
size_t nstrings, nstrings_max;
|
|
|
|
struct lines *strings;
|
|
|
|
char *line = NULL;
|
|
|
|
size_t len = 0;
|
|
|
|
size_t n;
|
|
|
|
|
2003-07-15 08:59:35 +00:00
|
|
|
if (argc < 2)
|
|
|
|
error (1, 0, "usage: %s <random seed>", argv[0]);
|
|
|
|
|
1997-03-05 00:35:19 +00:00
|
|
|
setlocale (LC_ALL, "");
|
|
|
|
|
|
|
|
nstrings_max = 100;
|
|
|
|
nstrings = 0;
|
|
|
|
strings = (struct lines *) malloc (nstrings_max * sizeof (struct lines));
|
|
|
|
if (strings == NULL)
|
|
|
|
{
|
|
|
|
perror (argv[0]);
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (1)
|
|
|
|
{
|
|
|
|
int l;
|
|
|
|
if (getline (&line, &len, stdin) < 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (nstrings == nstrings_max)
|
|
|
|
{
|
|
|
|
strings = (struct lines *) realloc (strings,
|
2003-07-15 08:59:35 +00:00
|
|
|
(nstrings_max *= 2)
|
|
|
|
* sizeof (*strings));
|
1997-03-05 00:35:19 +00:00
|
|
|
if (strings == NULL)
|
|
|
|
{
|
|
|
|
perror (argv[0]);
|
|
|
|
exit (1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
strings[nstrings].line = strdup (line);
|
|
|
|
l = strcspn (line, ":(;");
|
|
|
|
while (l > 0 && isspace (line[l - 1]))
|
|
|
|
--l;
|
|
|
|
strings[nstrings].key = strndup (line, l);
|
|
|
|
++nstrings;
|
|
|
|
}
|
2003-07-15 08:59:35 +00:00
|
|
|
free (line);
|
1997-03-05 00:35:19 +00:00
|
|
|
|
|
|
|
/* First shuffle. */
|
|
|
|
srandom (atoi (argv[1]));
|
|
|
|
for (n = 0; n < 10 * nstrings; ++n)
|
|
|
|
{
|
2021-11-03 19:20:05 +00:00
|
|
|
int r1, r2;
|
1997-03-05 00:35:19 +00:00
|
|
|
size_t idx1 = random () % nstrings;
|
|
|
|
size_t idx2 = random () % nstrings;
|
|
|
|
struct lines tmp = strings[idx1];
|
|
|
|
strings[idx1] = strings[idx2];
|
|
|
|
strings[idx2] = tmp;
|
|
|
|
|
|
|
|
/* While we are at it a first little test. */
|
|
|
|
r1 = strcoll (strings[idx1].key, strings[idx2].key);
|
|
|
|
r2 = strcoll (strings[idx2].key, strings[idx1].key);
|
|
|
|
|
2021-11-03 19:20:05 +00:00
|
|
|
if (signum (r1) != - signum (r2))
|
1997-03-05 00:35:19 +00:00
|
|
|
printf ("`%s' and `%s' collate wrong: %d vs. %d\n",
|
|
|
|
strings[idx1].key, strings[idx2].key, r1, r2);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now sort. */
|
|
|
|
qsort (strings, nstrings, sizeof (struct lines), xstrcoll);
|
|
|
|
|
|
|
|
/* Print the result. */
|
|
|
|
for (n = 0; n < nstrings; ++n)
|
2003-07-15 08:59:35 +00:00
|
|
|
{
|
|
|
|
fputs (strings[n].line, stdout);
|
|
|
|
free (strings[n].line);
|
|
|
|
free (strings[n].key);
|
|
|
|
}
|
|
|
|
free (strings);
|
1997-03-05 00:35:19 +00:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2015-10-16 20:21:49 +00:00
|
|
|
xstrcoll (const void *ptr1, const void *ptr2)
|
1997-03-05 00:35:19 +00:00
|
|
|
{
|
2000-11-23 19:41:48 +00:00
|
|
|
const struct lines *l1 = (const struct lines *) ptr1;
|
|
|
|
const struct lines *l2 = (const struct lines *) ptr2;
|
1997-03-05 00:35:19 +00:00
|
|
|
|
|
|
|
return strcoll (l1->key, l2->key);
|
|
|
|
}
|