Correct PPTP server firewall rules chain.
[tomato/davidwu.git] / release / src / router / libiconv / tests / check-stateful
blobc46e6923a4b8e868155f86ddcf4033ba890b0a69
1 #!/bin/sh
2 # Simple check of a stateful encoding.
3 # Usage: check-stateful SRCDIR CHARSET
4 srcdir="$1"
5 charset="$2"
6 set -e
8 # charset, modified for use in filenames.
9 charsetf=`echo "$charset" | sed -e 's,:,-,g'`
11 ../src/iconv_no_i18n -f "$charset" -t UTF-8 < "${srcdir}"/"$charsetf"-snippet > tmp-snippet
12 cmp "${srcdir}"/"$charsetf"-snippet.UTF-8 tmp-snippet
13 ../src/iconv_no_i18n -f UTF-8 -t "$charset" < "${srcdir}"/"$charsetf"-snippet.UTF-8 > tmp-snippet
14 cmp "${srcdir}"/"$charsetf"-snippet tmp-snippet
15 rm -f tmp-snippet
16 exit 0