Switch to autoconf 2.72.
[libiconv.git] / tests / check-translit
blobbabc91e24465086d9258b59f30d3af81f8cf3bf3
1 #!/bin/sh
2 # Simple check of transliteration facilities.
3 # Usage: check-translit SRCDIR FILE FROMCODE TOCODE
4 srcdir="$1"
5 file="$2"
6 fromcode="$3"
7 tocode="$4"
8 set -e
9 ../src/iconv_no_i18n -f "$fromcode" -t "$tocode"//TRANSLIT < "${srcdir}"/"$file"."$fromcode" > tmp
10 cmp "${srcdir}"/"$file"."$tocode" tmp
11 rm -f tmp
12 exit 0