outputting test log file on error

This commit is contained in:
Shlomi Noach 2018-02-12 11:14:40 +02:00
parent 06b7b06b05
commit 482a521253

View File

@ -153,7 +153,8 @@ test_single() {
if [ $execution_result -ne 0 ] ; then if [ $execution_result -ne 0 ] ; then
echo echo
echo "ERROR $test_name execution failure. cat $test_logfile" echo "ERROR $test_name execution failure. cat $test_logfile:"
cat $test_logfile
return 1 return 1
fi fi