unistr/u{8,16,32}-uctomb: Avoid possible trouble with huge strings.
[gnulib.git] / tests / test-strtold1.sh
blob3f4c4b916a3d8333f4e626897aeec3c6b035b4c4
1 #!/bin/sh
3 : ${LOCALE_FR=fr_FR}
4 : ${LOCALE_FR_UTF8=fr_FR.UTF-8}
6 if test $LOCALE_FR = none && test $LOCALE_FR_UTF8 = none; then
7 if test -f /usr/bin/localedef; then
8 echo "Skipping test: no locale for testing is installed"
9 else
10 echo "Skipping test: no locale for testing is supported"
12 exit 77
15 if test $LOCALE_FR != none; then
16 LC_ALL=$LOCALE_FR ${CHECKER} ./test-strtold1${EXEEXT} || exit 1
19 if test $LOCALE_FR_UTF8 != none; then
20 LC_ALL=$LOCALE_FR_UTF8 ${CHECKER} ./test-strtold1${EXEEXT} || exit 1
23 exit 0