source: trunk/src/grep/gnulib-tests/test-c-strcase.sh@ 3608

Last change on this file since 3608 was 3529, checked in by bird, 4 years ago

Imported grep 3.7 from grep-3.7.tar.gz (sha256: c22b0cf2d4f6bbe599c902387e8058990e1eee99aef333a203829e5fd3dbb342), applying minimal auto-props.

  • Property svn:executable set to *
File size: 677 bytes
Line 
1#!/bin/sh
2
3# Test in the C locale.
4${CHECKER} ./test-c-strcasecmp${EXEEXT} || exit 1
5${CHECKER} ./test-c-strncasecmp${EXEEXT} || exit 1
6
7# Test in an ISO-8859-1 or ISO-8859-15 locale.
8: ${LOCALE_FR=fr_FR}
9if test $LOCALE_FR != none; then
10 LC_ALL=$LOCALE_FR ${CHECKER} ./test-c-strcasecmp${EXEEXT} locale || exit 1
11 LC_ALL=$LOCALE_FR ${CHECKER} ./test-c-strncasecmp${EXEEXT} locale || exit 1
12fi
13
14# Test in a Turkish UTF-8 locale.
15: ${LOCALE_TR_UTF8=tr_TR.UTF-8}
16if test $LOCALE_TR_UTF8 != none; then
17 LC_ALL=$LOCALE_TR_UTF8 ${CHECKER} ./test-c-strcasecmp${EXEEXT} locale || exit 1
18 LC_ALL=$LOCALE_TR_UTF8 ${CHECKER} ./test-c-strncasecmp${EXEEXT} locale || exit 1
19fi
20
21exit 0
Note: See TracBrowser for help on using the repository browser.