projects
/
TestXSLT.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
removed old libs
[TestXSLT.git]
/
libiconv
/
tests
/
check-translitfailure
1
#!/bin/sh
2
# Simple check of transliteration failure.
3
# Usage: check-translitfailure SRCDIR FILE FROMCODE TOCODE
4
srcdir="$1"
5
file="$2"
6
fromcode="$3"
7
tocode="$4"
8
../src/iconv_no_i18n -f "$fromcode" -t "$tocode"//TRANSLIT < "${srcdir}"/"$file"."$fromcode" >/dev/null 2>/dev/null
9
test $? = 1
10
exit $?