Provide a mechanism to not clear out the work and output dirs when
developing tests.
This commit is contained in:
parent
930e323894
commit
3fbd14b443
@ -239,8 +239,10 @@ eval_clean()
|
|||||||
if [ -n "${TEST_CLEANUP}" ] ; then
|
if [ -n "${TEST_CLEANUP}" ] ; then
|
||||||
. ${SRC_DIR}/cleanup
|
. ${SRC_DIR}/cleanup
|
||||||
fi
|
fi
|
||||||
rm -rf ${WORK_DIR}
|
if [ -z "${NO_TEST_CLEANUP}" ] ; then
|
||||||
rm -rf ${OUTPUT_DIR}
|
rm -rf ${WORK_DIR}
|
||||||
|
rm -rf ${OUTPUT_DIR}
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Loading…
x
Reference in New Issue
Block a user