mirror of
https://github.com/Dushistov/sdcv.git
synced 2025-12-15 17:31:56 +00:00
26 lines
467 B
Bash
Executable File
26 lines
467 B
Bash
Executable File
#!/bin/sh
|
|
# This test is dirty hack: if you want try it
|
|
# make sure that you have not small Russian dictionary, like mueller 7 GPL
|
|
# or replace человек by something else
|
|
|
|
PATH_TO_SDCV="$1"
|
|
|
|
unset SDCV_PAGER
|
|
export LANG=ru_RU.KOI8-R
|
|
IFS="
|
|
"
|
|
j=0
|
|
for i in `"$PATH_TO_SDCV" --utf8-input -n человек 2>&1`; do
|
|
j=$(($j+1))
|
|
if [ $j -ne 1 ]; then
|
|
break;
|
|
fi
|
|
done
|
|
|
|
if [ $j -eq 1 ]; then
|
|
echo "$0: empty results of search: test failed" >&2
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|