ibus-table/tests/run_python_doctests.sh

17 lines
204 B
Bash
Raw Normal View History

2019-06-25 14:50:00 +00:00
#!/bin/bash
set -x
check_return_value () {
if [ $1 != 0 ] ; then
exit $1
fi
}
pushd /usr/share/ibus-table/engine
for i in $@; do
python3 ${i} -v
check_return_value $?
done
popd