Files
sdcv/tests/t_utf8output
Evgeniy Dushistov 3f241bb6bb 0.4.2 release
2007-08-14 18:18:20 +00:00

12 lines
203 B
Bash
Executable File

#!/bin/sh
export LANG=ru_RU.KOI8-R
unset SDCV_PAGER
if ! ../src/sdcv -n --utf8-output man | tail -n -1 | iconv -f utf-8 -t utf-8 >/dev/null; then
echo "utf8 output didn't work" >&2
exit 1
fi
exit 0