0.4.2 release

This commit is contained in:
Evgeniy Dushistov
2007-08-14 18:18:20 +00:00
commit 3f241bb6bb
118 changed files with 29884 additions and 0 deletions

14
tests/t_use Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
cp -R stardict-test_dict-2.4.2 "${HOME}"/.stardict/dic
unset SDCV_PAGER
RES=`../src/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