Skip to content
Snippets Groups Projects
Commit 70f4e7a8 authored by Wittenburg, William's avatar Wittenburg, William
Browse files

Explicit check for ctest exit code

parent 02a9685e
No related branches found
No related tags found
1 merge request!253Finish image buildout
......@@ -32,3 +32,12 @@ case "$1" in
esac
/opt/cmake/3.6.0/bin/ctest -VV -S ${CTEST_SCRIPT} -Ddashboard_full=OFF -Ddashboard_do_${STEP}=TRUE
if [ $? -eq 0 ]
then
echo "ctest returned success"
exit 0
else
echo "ctest returned failure" >&2
exit 1
fi
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