summaryrefslogtreecommitdiff
path: root/test/GNU/check-translit
blob: babc91e24465086d9258b59f30d3af81f8cf3bf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh
# Simple check of transliteration facilities.
# Usage: check-translit SRCDIR FILE FROMCODE TOCODE
srcdir="$1"
file="$2"
fromcode="$3"
tocode="$4"
set -e
../src/iconv_no_i18n -f "$fromcode" -t "$tocode"//TRANSLIT < "${srcdir}"/"$file"."$fromcode" > tmp
cmp "${srcdir}"/"$file"."$tocode" tmp
rm -f tmp
exit 0