summaryrefslogtreecommitdiff
path: root/tests/gnu/test-c-strcase.sh
diff options
context:
space:
mode:
authorRichard Maw <richard.maw@codethink.co.uk>2012-01-11 10:45:00 +0000
committerRichard Maw <richard.maw@codethink.co.uk>2012-01-11 10:45:00 +0000
commit24d1733e78a17d71aea6912144394ed7d3a82d50 (patch)
tree069608d934a8716d55a94c62c4bd75c1152f868c /tests/gnu/test-c-strcase.sh
parentd7b9fe130c2305d44fa1023283d3c2fcd389ba93 (diff)
downloadm4-24d1733e78a17d71aea6912144394ed7d3a82d50.tar.gz
remove .gitignores and add the rest of the files
Diffstat (limited to 'tests/gnu/test-c-strcase.sh')
-rwxr-xr-xtests/gnu/test-c-strcase.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/gnu/test-c-strcase.sh b/tests/gnu/test-c-strcase.sh
new file mode 100755
index 00000000..5fcf906b
--- /dev/null
+++ b/tests/gnu/test-c-strcase.sh
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+# Test in the C locale.
+./test-c-strcasecmp${EXEEXT} || exit 1
+./test-c-strncasecmp${EXEEXT} || exit 1
+
+# Test in an ISO-8859-1 or ISO-8859-15 locale.
+: ${LOCALE_FR=fr_FR}
+if test $LOCALE_FR != none; then
+ LC_ALL=$LOCALE_FR ./test-c-strcasecmp${EXEEXT} locale || exit 1
+ LC_ALL=$LOCALE_FR ./test-c-strncasecmp${EXEEXT} locale || exit 1
+fi
+
+# Test in a Turkish UTF-8 locale.
+: ${LOCALE_TR_UTF8=tr_TR.UTF-8}
+if test $LOCALE_TR_UTF8 != none; then
+ LC_ALL=$LOCALE_TR_UTF8 ./test-c-strcasecmp${EXEEXT} locale || exit 1
+ LC_ALL=$LOCALE_TR_UTF8 ./test-c-strncasecmp${EXEEXT} locale || exit 1
+fi
+
+exit 0