1997-03-05 00:35:19 +00:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
common_objpfx=$1; shift
|
2000-07-12 20:06:44 +00:00
|
|
|
run_program_prefix=$1; shift
|
1997-03-05 00:35:19 +00:00
|
|
|
lang=$*
|
|
|
|
|
|
|
|
id=${PPID:-100}
|
|
|
|
here=`pwd`
|
|
|
|
|
|
|
|
# Run collation tests.
|
|
|
|
status=0
|
|
|
|
for l in $lang; do
|
2000-07-16 07:30:42 +00:00
|
|
|
here=0
|
1997-03-05 00:35:19 +00:00
|
|
|
cns=`echo $l | sed 's/\(.*\)[.][^.]*/\1/'`
|
2000-06-25 18:14:28 +00:00
|
|
|
LOCPATH=${common_objpfx}localedata GCONV_PATH=${common_objpfx}/iconvdata \
|
2000-07-12 20:06:44 +00:00
|
|
|
LC_ALL=$l ${run_program_prefix} \
|
1998-02-24 15:22:29 +00:00
|
|
|
${common_objpfx}localedata/collate-test $id < $cns.in \
|
2000-07-16 07:30:42 +00:00
|
|
|
> ${common_objpfx}localedata/$cns.out || here=1
|
|
|
|
cmp -s $cns.in ${common_objpfx}localedata/$cns.out || here=1
|
2004-01-02 01:07:21 +00:00
|
|
|
if test $here -eq 0; then
|
|
|
|
echo "$l collate-test OK"
|
|
|
|
else
|
|
|
|
echo "$l collate-test FAIL"
|
|
|
|
diff -u $cns.in ${common_objpfx}localedata/$cns.out | sed 's/^/ /'
|
|
|
|
status=1
|
|
|
|
fi
|
1997-03-05 00:35:19 +00:00
|
|
|
|
2000-06-25 18:14:28 +00:00
|
|
|
LOCPATH=${common_objpfx}localedata GCONV_PATH=${common_objpfx}/iconvdata \
|
2000-07-12 20:06:44 +00:00
|
|
|
LC_ALL=$l ${run_program_prefix} \
|
1998-02-24 15:22:29 +00:00
|
|
|
${common_objpfx}localedata/xfrm-test $id < $cns.in \
|
2000-07-16 07:30:42 +00:00
|
|
|
> ${common_objpfx}localedata/$cns.xout || here=1
|
|
|
|
cmp -s $cns.in ${common_objpfx}localedata/$cns.xout || here=1
|
|
|
|
if test $here -eq 0; then
|
2004-01-02 01:07:21 +00:00
|
|
|
echo "$l xfrm-test OK"
|
2000-07-16 07:30:42 +00:00
|
|
|
else
|
2004-01-02 01:07:21 +00:00
|
|
|
echo "$l xfrm-test FAIL"
|
|
|
|
diff -u $cns.in ${common_objpfx}localedata/$cns.xout | sed 's/^/ /'
|
2000-07-16 07:30:42 +00:00
|
|
|
status=1
|
|
|
|
fi
|
1997-03-05 00:35:19 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
exit $status
|
|
|
|
# Local Variables:
|
1997-08-29 01:19:12 +00:00
|
|
|
# mode:shell-script
|
1997-03-05 00:35:19 +00:00
|
|
|
# End:
|