mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 19:38:09 +00:00
15 lines
183 B
Bash
Executable file
15 lines
183 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Check QML files, quit on failure.
|
|
'./tools/check_qml_syntax'
|
|
|
|
if [[ $? != 0 ]] ; then
|
|
exit 1
|
|
fi
|
|
|
|
printf '\n'
|
|
|
|
# Run unit tests.
|
|
'./tools/test_qml'
|
|
|
|
exit $?
|