Travis fix error when no tests are done

This commit is contained in:
mayeut 2015-09-12 20:06:31 +02:00
parent 1621df453d
commit c08bd89739
1 changed files with 20 additions and 12 deletions

View File

@ -131,9 +131,12 @@ Parsing logs for new/unknown failures
"
OPJ_CI_RESULT=0
awk -F: '{ print $2 }' build/Testing/Temporary/LastTestsFailed_*.log > failures.txt
OPJ_HAS_TESTS=$(find build -path 'build/Testing/Temporary*' -name 'LastTestsFailed*' | wc -l)
OPJ_HAS_TESTS=$(echo $OPJ_HAS_TESTS) #macos wc workaround
while read FAILEDTEST; do
if [ $OPJ_HAS_TESTS -ne 0 ]; then
awk -F: '{ print $2 }' build/Testing/Temporary/LastTestsFailed_*.log > failures.txt
while read FAILEDTEST; do
# Start with common errors
if grep -x "${FAILEDTEST}" ${OPJ_SOURCE_DIR}/tools/travis-ci/knownfailures-all.txt > /dev/null; then
continue
@ -145,12 +148,17 @@ while read FAILEDTEST; do
fi
echo "${FAILEDTEST}"
OPJ_CI_RESULT=1
done < failures.txt
done < failures.txt
fi
# TODO parse memcheck
if [ ${OPJ_CI_RESULT} -eq 0 ]; then
echo "No new/unknown failure found"
else
echo "
New/unknown failures found!!!
"
fi
exit ${OPJ_CI_RESULT}