From: Daiki Ueno Date: Fri, 12 Dec 2014 00:20:59 +0000 (+0900) Subject: unicase/locale-language-tests: fix LOCALE_FR test X-Git-Tag: v1.0~7225 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=e45661b4c89151dd6c04238b7391890400da9f7f;p=gnulib.git unicase/locale-language-tests: fix LOCALE_FR test * tests/unicase/test-locale-language.sh: Really use $LOCALE_FR for a French locale with traditional encoding. Reported by umerqayam in: http://lists.gnu.org/archive/html/bug-libunistring/2014-12/msg00000.html --- diff --git a/ChangeLog b/ChangeLog index df4d8d4f56..7e5fe91def 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2014-12-12 Daiki Ueno + + unicase/locale-language-tests: fix LOCALE_FR test + * tests/unicase/test-locale-language.sh: Really use $LOCALE_FR for + a French locale with traditional encoding. + Reported by umerqayam in: + http://lists.gnu.org/archive/html/bug-libunistring/2014-12/msg00000.html + 2014-12-12 Paul Eggert stddef: support C11's max_align_t diff --git a/tests/unicase/test-locale-language.sh b/tests/unicase/test-locale-language.sh index 0a04a0dadb..2aa3460877 100755 --- a/tests/unicase/test-locale-language.sh +++ b/tests/unicase/test-locale-language.sh @@ -3,8 +3,8 @@ LC_ALL=C ./test-locale-language${EXEEXT} '' || exit 1 : ${LOCALE_FR=fr_FR} -if test $LOCALE_FR_UTF8 != none; then - LC_ALL=$LOCALE_FR_UTF8 ./test-locale-language${EXEEXT} fr || exit 1 +if test $LOCALE_FR != none; then + LC_ALL=$LOCALE_FR ./test-locale-language${EXEEXT} fr || exit 1 fi : ${LOCALE_FR_UTF8=fr_FR.UTF-8}