Files
sdcv/tests/t_use
Evgeniy A. Dushistov b8b3dc8e75 fix for t_use test
2016-06-02 15:04:23 +03:00

21 lines
424 B
Bash
Executable File

#!/bin/sh
set -e
PATH_TO_SDCV="$1"
TESTS_DIR="$2"
mkdir -p "${HOME}"/.stardict/dic
cp -R "${TESTS_DIR}/stardict-test_dict-2.4.2" "${HOME}"/.stardict/dic
unset SDCV_PAGER
RES=`"$PATH_TO_SDCV" -n -u test_dict test | grep "test passed"`
if [ -z "$RES" ]; then
echo "we didn't find in stardict-test_dict-2.4.2 "test" keyword, something wrong" >&2
exit 1
fi
rm -fr "${HOME}"/.stardict/dic/stardict-test_dict-2.4.2
exit 0