Provide a mechanism to not clear out the work and output dirs when

developing tests.
This commit is contained in:
David E. O'Brien 2012-06-20 21:38:16 +00:00
parent 930e323894
commit 3fbd14b443
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=237344

View File

@ -239,8 +239,10 @@ eval_clean()
if [ -n "${TEST_CLEANUP}" ] ; then
. ${SRC_DIR}/cleanup
fi
rm -rf ${WORK_DIR}
rm -rf ${OUTPUT_DIR}
if [ -z "${NO_TEST_CLEANUP}" ] ; then
rm -rf ${WORK_DIR}
rm -rf ${OUTPUT_DIR}
fi
}
#