-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* string/Makefile (tests): Add tst-strxfrm2.
* string/tst-strxfrm2.c: New file. * string/strxfrm_l.c (STRXFRM): Do the trailing \1 removal optimization even if needed > n.
- Loading branch information
Ulrich Drepper
committed
Nov 9, 2006
1 parent
2692dee
commit 2f334ad
Showing
4 changed files
with
59 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#include <locale.h> | ||
#include <stdio.h> | ||
#include <string.h> | ||
|
||
static int | ||
do_test (void) | ||
{ | ||
int res = 0; | ||
|
||
char buf[10]; | ||
size_t l1 = strxfrm (NULL, "ab", 0); | ||
size_t l2 = strxfrm (buf, "ab", 1); | ||
size_t l3 = strxfrm (buf, "ab", sizeof (buf)); | ||
|
||
if (l1 != l2 || l1 != l3) | ||
{ | ||
puts ("C locale test failed"); | ||
res = 1; | ||
} | ||
|
||
if (setlocale (LC_ALL, "de_DE.UTF-8") == NULL) | ||
{ | ||
puts ("setlocale failed"); | ||
res = 1; | ||
} | ||
else | ||
{ | ||
l1 = strxfrm (NULL, "ab", 0); | ||
l2 = strxfrm (buf, "ab", 1); | ||
l3 = strxfrm (buf, "ab", sizeof (buf)); | ||
|
||
if (l1 != l2 || l1 != l3) | ||
{ | ||
puts ("UTF-8 locale test failed"); | ||
res = 1; | ||
} | ||
} | ||
|
||
return res; | ||
} | ||
|
||
#define TEST_FUNCTION do_test () | ||
#include "../test-skeleton.c" |