File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -210,16 +210,19 @@ EOF
210
210
rm -rf " coverage-external-html-$1 -$name "
211
211
mkdir " coverage-external-html-$1 -$name "
212
212
" $PHPUNIT " --configuration phpunit-autotest-external.xml --log-junit " autotest-external-results-$1 -$name .xml" --coverage-clover " autotest-external-clover-$1 -$name .xml" --coverage-html " coverage-external-html-$1 -$name " " $FILES_EXTERNAL_BACKEND_PATH /$testToRun "
213
- RESULT=$?
214
213
else
215
214
echo " No coverage"
216
215
" $PHPUNIT " --configuration phpunit-autotest-external.xml --log-junit " autotest-external-results-$1 -$name .xml" " $FILES_EXTERNAL_BACKEND_PATH /$testToRun "
217
- RESULT=$?
218
216
fi
219
217
else
220
218
DOEXIT=1
221
219
fi
222
220
221
+ if [[ $? -ne 0 ]]; then
222
+ echo " Error during phpunit execution ... terminating"
223
+ exit 1
224
+ fi
225
+
223
226
# calculate stop file
224
227
stopFile=` echo " $startFile " | sed ' s/start/stop/' `
225
228
echo " stop: $stopFile "
You can’t perform that action at this time.
0 commit comments