From 1b235f506619fd7b35b554ea5a51672e9a6f143d Mon Sep 17 00:00:00 2001 From: George Danchev Date: Tue, 28 Jun 2011 15:17:28 +0000 Subject: [PATCH] use/document data directory --- releng/run_all_releng | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/releng/run_all_releng b/releng/run_all_releng index f59d1cc2..0a9669e3 100755 --- a/releng/run_all_releng +++ b/releng/run_all_releng @@ -3,8 +3,9 @@ set -e SELF=$(basename "$0") -CLOG1=log.$SELF.1 -CLOG2=log.$SELF.2 +GEN_DATA_DIR=releng_generated_data +CLOG1=${GEN_DATA_DIR}/log.$SELF.1 +CLOG2=${GEN_DATA_DIR}/log.$SELF.2 PASSED_OPTIONS="" if [ "${1}" == "-cleanup" ]; then @@ -15,8 +16,13 @@ elif [ "${1}" == "-rc" ]; then PASSED_OPTIONS="-rc" else cat << HLP + +runs executables from CWD starting with releng_*. +stdout/stderr output stored in ${GEN_DATA_DIR}/log.* + ${SELF} -rc [-keep] ${SELF} -cleanup + HLP exit 101 fi