pipe thru sort so we get more deterministic list of executed tests

This commit is contained in:
George Danchev 2011-06-26 15:44:09 +00:00
parent e007f9e75c
commit d0162610b1
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ DSTART=`date --utc`
printf "\n$0: Started at ${DSTART}"
E1=`date '+%s'`
# require ^releng_, avoid running (your)self explcitly
for s in `ls | grep ^releng_ | grep -v ${SELF}`; do
for s in `ls | grep ^releng_ | grep -v ${SELF} | sort`; do
if [ -x ${s} ]; then
set +e
printf "\n$0: Running ${s}..."