diff --git a/get_results.sh b/get_results.sh index 5704c7c5..25124291 100755 --- a/get_results.sh +++ b/get_results.sh @@ -41,7 +41,7 @@ fi echo "$(date) - Clean result dir" rm -rf ${RESULT_DIR} -find ${BASE_DIR}/scenarios/ -depth -maxdepth 1 -mindepth 1 -type d -exec basename {} \; | sort \ +find ${BASE_DIR}/scenarios/ -depth -maxdepth 1 -mindepth 1 -type d -exec basename {} \; | grep -v templates| sort \ | parallel "${BIN_DIR}/check.sh ${GRAPH} -C -d ${DOMAIN} -p ${PROFILE}" echo "$(date) - All done" diff --git a/run_tests.sh b/run_tests.sh index a25d1850..fcb90917 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -50,7 +50,7 @@ fi echo "$(date) - Clean log dir" rm -rf ${LOG_DIR} -for t in $(find ${BASE_DIR}/scenarios/ -depth -maxdepth 1 -mindepth 1 -type d | sort); do +for t in $(find ${BASE_DIR}/scenarios/ -depth -maxdepth 1 -mindepth 1 -type d | grep -v templates | sort); do echo "$(date) - Run[${PROFILE}]: $(basename $t) =================================================" ${BIN_DIR}/check.sh -P -d ${DOMAIN} -p ${PROFILE} $(basename $t) if [ $? -ne 0 ]; then