changed: do not remove the result path in regression tests

in particular this leads to issues with tests sharing
result dir
This commit is contained in:
Arne Morten Kvarving 2018-08-09 08:11:36 +02:00
parent 11b987b97d
commit b1b5759d7f

View File

@ -15,10 +15,10 @@ EXE_NAME="${9}"
shift 9
TEST_ARGS="$@"
rm -Rf ${RESULT_PATH}
mkdir -p ${RESULT_PATH}
cd ${RESULT_PATH}
${BINPATH}/${EXE_NAME} ${TEST_ARGS} output_dir=${RESULT_PATH}
test $? -eq 0 || exit 1
cd ..
ecode=0