1#!/bin/sh
2# Simple check of a stateful encoding.
3# Usage: check-stateful SRCDIR CHARSET
4srcdir="$1"
5charset="$2"
6set -e
7
8# charset, modified for use in filenames.
9charsetf=`echo "$charset" | sed -e 's,:,-,g'`
10
11../src/iconv_no_i18n -f "$charset" -t UTF-8 < "${srcdir}"/"$charsetf"-snippet > tmp-snippet
12cmp "${srcdir}"/"$charsetf"-snippet.UTF-8 tmp-snippet
13../src/iconv_no_i18n -f UTF-8 -t "$charset" < "${srcdir}"/"$charsetf"-snippet.UTF-8 > tmp-snippet
14cmp "${srcdir}"/"$charsetf"-snippet tmp-snippet
15rm -f tmp-snippet
16exit 0
17