Skip to content
Snippets Groups Projects
Commit fbe56cc9 authored by Emmanuel Milou's avatar Emmanuel Milou
Browse files

[#3947] Exit 1 if one test fails

parent 368a04c1
No related branches found
No related tags found
No related merge requests found
......@@ -4,10 +4,12 @@
#
# Author: Emmanuel Milou <emmanuel.milou@savoirfairelinux.com>
set -x
# Compile the daemon
pushd sflphone-common
./autogen.sh
# Compile pjproject first
Compile pjproject first
pushd libs/pjproject
./autogen.sh
./configure
......@@ -20,7 +22,8 @@ popd
# Run the unit tests for the daemon
pushd sflphone-common/test
make check
./test --xml
# if at least one test failed, exit
./test || exit 1
popd
# Compile the client
......@@ -30,4 +33,5 @@ pushd sflphone-client-gnome
make
popd
# SUCCESS
exit 0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment