Update after gnulib changed.
[libiconv.git] / tests / check-stateful
blob218103c239823a6bad46437f82887751b9817533
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 if test -f "${srcdir}"/"$charsetf"-snippet.alt; then
12 ../src/iconv_no_i18n -f "$charset" -t UTF-8 < "${srcdir}"/"$charsetf"-snippet.alt > tmp-snippet
13 cmp "${srcdir}"/"$charsetf"-snippet.UTF-8 tmp-snippet
15 ../src/iconv_no_i18n -f "$charset" -t UTF-8 < "${srcdir}"/"$charsetf"-snippet > tmp-snippet
16 cmp "${srcdir}"/"$charsetf"-snippet.UTF-8 tmp-snippet
17 ../src/iconv_no_i18n -f UTF-8 -t "$charset" < "${srcdir}"/"$charsetf"-snippet.UTF-8 > tmp-snippet
18 cmp "${srcdir}"/"$charsetf"-snippet tmp-snippet
19 rm -f tmp-snippet
20 exit 0