Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update.
2001-03-19  Ulrich Drepper  <drepper@redhat.com>

	* string/Makefile (tests): Add tst-strxfrm.
	* string/tst-strxfrm.c: New file.  Based on a test case by Paul Eggert.
	* string/Depend: New file.

2001-03-19  Paul Eggert  <eggert@twinsun.com>

	* string/strxfrm.c (strxfrm): strxfrm should return 0, not 1,
	when given the empty string in nontrivial locales.
  • Loading branch information
Ulrich Drepper committed Mar 19, 2001
1 parent b28dcd8 commit 3c50487
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 2 deletions.
11 changes: 11 additions & 0 deletions ChangeLog
@@ -1,3 +1,14 @@
2001-03-19 Ulrich Drepper <drepper@redhat.com>

* string/Makefile (tests): Add tst-strxfrm.
* string/tst-strxfrm.c: New file. Based on a test case by Paul Eggert.
* string/Depend: New file.

2001-03-19 Paul Eggert <eggert@twinsun.com>

* string/strxfrm.c (strxfrm): strxfrm should return 0, not 1,
when given the empty string in nontrivial locales.

2001-03-17 H.J. Lu <hjl@gnu.org>

* manual/Makefile (install): Use $(INSTALL_DATA) instead of
Expand Down
1 change: 1 addition & 0 deletions string/Depend
@@ -0,0 +1 @@
localedata
2 changes: 1 addition & 1 deletion string/Makefile
Expand Up @@ -48,7 +48,7 @@ o-objects.ob := memcpy.o memset.o memchr.o
tests := tester inl-tester noinl-tester testcopy test-ffs \
tst-strlen stratcliff tst-svc tst-inlcall \
bug-strncat1 bug-strspn1 bug-strpbrk1 tst-bswap \
tst-strtok
tst-strtok tst-strxfrm
distribute := memcopy.h pagecopy.h tst-svc.expect


Expand Down
2 changes: 1 addition & 1 deletion string/strxfrm.c
Expand Up @@ -162,7 +162,7 @@ STRXFRM (STRING_TYPE *dest, const STRING_TYPE *src, size_t n, __locale_t l)
{
if (n != 0)
*dest = L('\0');
return 1;
return 0;
}

/* We need the elements of the string as unsigned values since they
Expand Down
56 changes: 56 additions & 0 deletions string/tst-strxfrm.c
@@ -0,0 +1,56 @@
/* Based on a test case by Paul Eggert. */
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>


char const string[] = "";


static int
test (const char *locale)
{
size_t bufsize;
size_t r;
size_t l;
char *buf;
int result = 0;

if (setlocale (LC_COLLATE, locale) == NULL)
{
printf ("cannot set locale \"%s\"\n", locale);
return 1;
}
bufsize = strxfrm (NULL, string, 0) + 1;
buf = malloc (bufsize);
if (buf == NULL)
{
printf ("cannot allocate %zd bytes\n", bufsize);
return 1;
}
r = strxfrm (buf, string, bufsize);
l = strlen (buf);
if (r != l)
{
printf ("locale \"%s\": strxfrm returned %zu, strlen returned %zu\n",
locale, r, l);
result = 1;
}
free (buf);

return result;
}


int
main (void)
{
int result = 0;

result |= test ("C");
result |= test ("en_US.ISO-8859-1");
result |= test ("de_DE.UTF-8");

return result;
}

0 comments on commit 3c50487

Please sign in to comment.