Last change
on this file since 3627 was 2595, checked in by bird, 13 years ago |
gnu grep version 2.12 (grep-2.12.tar.xz, md5sum=8d2f0346d08b13c18afb81f0e8aa1e2f)
|
-
Property svn:eol-style
set to
native
|
File size:
611 bytes
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 |
|
---|
3 | # Test in the C locale.
|
---|
4 | ./test-c-strcasecmp${EXEEXT} || exit 1
|
---|
5 | ./test-c-strncasecmp${EXEEXT} || exit 1
|
---|
6 |
|
---|
7 | # Test in an ISO-8859-1 or ISO-8859-15 locale.
|
---|
8 | : ${LOCALE_FR=fr_FR}
|
---|
9 | if test $LOCALE_FR != none; then
|
---|
10 | LC_ALL=$LOCALE_FR ./test-c-strcasecmp${EXEEXT} locale || exit 1
|
---|
11 | LC_ALL=$LOCALE_FR ./test-c-strncasecmp${EXEEXT} locale || exit 1
|
---|
12 | fi
|
---|
13 |
|
---|
14 | # Test in a Turkish UTF-8 locale.
|
---|
15 | : ${LOCALE_TR_UTF8=tr_TR.UTF-8}
|
---|
16 | if test $LOCALE_TR_UTF8 != none; then
|
---|
17 | LC_ALL=$LOCALE_TR_UTF8 ./test-c-strcasecmp${EXEEXT} locale || exit 1
|
---|
18 | LC_ALL=$LOCALE_TR_UTF8 ./test-c-strncasecmp${EXEEXT} locale || exit 1
|
---|
19 | fi
|
---|
20 |
|
---|
21 | exit 0
|
---|
Note:
See
TracBrowser
for help on using the repository browser.