Bugfix for the testHarness runFunctions. Martin Beaudoin
This commit is contained in:
commit
76e215946d
1 changed files with 3 additions and 3 deletions
|
@ -36,10 +36,10 @@ verbose_report_on_runApplication_error()
|
|||
if [ "$reportOnErrorOnlyOnce" ] ; then
|
||||
echo " "
|
||||
echo " => Error running $APP_RUN..."
|
||||
echo " => Here are the last 50 lines of the log file log.$APP_RUN..."
|
||||
echo " => Here are the last 50 lines of the log file $LOG_NAME..."
|
||||
echo " "
|
||||
if [ -f log.$APP_RUN ] ; then
|
||||
tail -50 log.$APP_RUN
|
||||
if [ -f $LOG_NAME ] ; then
|
||||
tail -50 $LOG_NAME
|
||||
exit $ecode;
|
||||
fi
|
||||
fi
|
||||
|
|
Reference in a new issue