linphone-desktop/tests/tools/private/pre-commit

15 lines
195 B
Bash
Executable file

#!/usr/bin/sh
# Check QML files, quit on failure.
sh './tests/tools/check_qml_syntax'
if [[ $? != 0 ]] ; then
exit 1
fi
printf '\n'
# Run unit tests.
sh './tests/tools/test_qml'
exit $?