File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / libiconv / tests / check-stateful
Revision 1.1.1.2 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Wed Mar 17 13:38:46 2021 UTC (3 years, 3 months ago) by misho
Branches: libiconv, MAIN
CVS tags: v1_16p0, HEAD
libiconv 1.16

#!/bin/sh
# Simple check of a stateful encoding.
# Usage: check-stateful SRCDIR CHARSET
srcdir="$1"
charset="$2"
set -e

# charset, modified for use in filenames.
charsetf=`echo "$charset" | sed -e 's,:,-,g'`

if test -f "${srcdir}"/"$charsetf"-snippet.alt; then
  ../src/iconv_no_i18n -f "$charset" -t UTF-8 < "${srcdir}"/"$charsetf"-snippet.alt > tmp-snippet
  cmp "${srcdir}"/"$charsetf"-snippet.UTF-8 tmp-snippet
fi
../src/iconv_no_i18n -f "$charset" -t UTF-8 < "${srcdir}"/"$charsetf"-snippet > tmp-snippet
cmp "${srcdir}"/"$charsetf"-snippet.UTF-8 tmp-snippet
../src/iconv_no_i18n -f UTF-8 -t "$charset" < "${srcdir}"/"$charsetf"-snippet.UTF-8 > tmp-snippet
cmp "${srcdir}"/"$charsetf"-snippet tmp-snippet
rm -f tmp-snippet
exit 0

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>