start of fix for 122632 to avoid overflows

This commit is contained in:
sonja.mirtitsch%sun.com 2002-02-06 04:02:46 +00:00
parent 63f4d5d763
commit 0fbd97206f
2 changed files with 8 additions and 0 deletions

View File

@ -501,6 +501,8 @@ tbx_dirs()
mkdir -p $TESTDIR
fi
fi
Debug "Making QAstatus file"
echo "QA running" >${TESTDIR}/QAstatus
export TESTDIR
Debug "RESULTDIR $RESULTDIR TESTDIR $TESTDIR"

View File

@ -928,6 +928,12 @@ qa_stat_init
if [ "$O_TBX" = "ON" -o "$O_LOCAL" = "ON" ] ; then
tbx_main
rm $RESULTDIR/QAstatus
if [ $TBX_EXIT = 0 ] ; then
echo "QA passed" >${TESTDIR}/QAstatus
else
echo "QA failed" >${TESTDIR}/QAstatus
fi
else
qa_stat_main
fi