m17n-db/tests/smoke/runtest.sh
Parag Nemade 6677c53c7e
Resolves:rhbz#1961997 - Add gating tests from rhel-8
Malayalam Mozhi input scheme bug fix
2021-06-08 08:21:16 +05:30

21 lines
471 B
Bash

#!/bin/bash
# If one of the commands below returns non-zero then exit immediately
set -e
echo "m17n-db version: `m17n-db --version`"
echo "m17n-db directory: `m17n-db`"
echo " "
echo " "
echo "Test minimal syntax presence for mim files"
for file in `ls /usr/share/m17n/*.mim`; do
grep "(input-method" $file
if [ $? == 0 ]; then
echo "PASSED: minimal syntax for $file"
else
echo "FAILED: minimal syntax for $file"
exit 1
fi
done