|
|
|
@ -89,7 +89,7 @@ if [ ! "${1}" ]; then
|
|
|
|
|
cat << HLP
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
${SELF} runs executables from CWD starting
|
|
|
|
|
with releng_*, passing them its own options.
|
|
|
|
|
with auto_*, passing them its own options.
|
|
|
|
|
stdout/stderr output stored in:
|
|
|
|
|
${CLOG}
|
|
|
|
|
|
|
|
|
@ -118,8 +118,8 @@ fi
|
|
|
|
|
DSTART=`date --utc`
|
|
|
|
|
echo -ne "${SELF}: Started at ${DSTART}" | tee -a ${CLOG}
|
|
|
|
|
E1=`date '+%s'`
|
|
|
|
|
# require ^releng_, avoid running (your)self explicitly
|
|
|
|
|
for s in `ls | grep ^releng_ | grep -v ${SELF} | sort -n`; do
|
|
|
|
|
# require ^auto_, avoid running (your)self explicitly
|
|
|
|
|
for s in `ls | grep ^auto_ | grep -v ${SELF} | sort -n`; do
|
|
|
|
|
if [ -x ${s} -a ! -d ${s} ]; then
|
|
|
|
|
echo -ne "\n\n_STARTING_TEST_________________________________________________________" >> ${CLOG}
|
|
|
|
|
echo -ne "\n${SELF}: Running ./${s} ${PASSED_OPTIONS} :\n" \
|