libisoburn/releng/run_all

34 lines
588 B
Plaintext
Raw Normal View History

2011-06-26 14:06:38 +00:00
#!/bin/bash
set -e
SELF=`echo $0|sed -e 's/\.\///'`
CLOG1=log.$SELF.1
CLOG2=log.$SELF.2
2011-06-26 14:06:38 +00:00
2011-06-26 14:07:54 +00:00
> ${CLOG1}
> ${CLOG2}
2011-06-26 14:06:38 +00:00
main() {
# avoid running (your)self
for s in `ls | grep -v ${SELF}`; do
if [ -x ${s} ]; then
set +e
printf "\n$0: running ${s}..."
# -rc -clean are shared options amongst the all releng scripts
2011-06-26 14:23:13 +00:00
T1=`date '+%s'`
2011-06-26 14:06:38 +00:00
./${s} -rc -clean 1>>${CLOG1} 2>>${CLOG2}
RET=$?
2011-06-26 14:23:13 +00:00
T2=`date '+%s'`
let TS="${T2}-${T1}"
2011-06-26 14:54:49 +00:00
printf "done. return code: $RET; time spent: ${TS}."
2011-06-26 14:06:38 +00:00
set -e
fi
done
printf "\n\n\t$0: *** inspect ${CLOG1} and ${CLOG2} ***\n\n"
2011-06-26 14:06:38 +00:00
exit 0
}
#
main