Bump to m4 1.4.19
[platform/upstream/m4.git] / tests / test-strtod1.sh
1 #!/bin/sh
2
3 : ${LOCALE_FR=fr_FR}
4 : ${LOCALE_FR_UTF8=fr_FR.UTF-8}
5
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"
11   fi
12   exit 77
13 fi
14
15 if test $LOCALE_FR != none; then
16   LC_ALL=$LOCALE_FR      ${CHECKER} ./test-strtod1${EXEEXT} || exit 1
17 fi
18
19 if test $LOCALE_FR_UTF8 != none; then
20   LC_ALL=$LOCALE_FR_UTF8 ${CHECKER} ./test-strtod1${EXEEXT} || exit 1
21 fi
22
23 exit 0