ceph/qa/runallonce.sh

24 lines
497 B
Bash
Raw Normal View History

#!/bin/bash -x
set -e
basedir=`echo $0 | sed 's/[^/]*$//g'`.
testdir="$1"
2009-12-08 00:48:35 +00:00
[ ${basedir:0:1} == "." ] && basedir=`pwd`/${basedir:1}
[ -z "$testdir" ] || [ ! -d "$testdir" ] && echo "specify test dir" && exit 1
cd $testdir
for test in `cd $basedir && find workunits/* | grep .sh`
do
echo "------ running test $test ------"
mkdir -p $test
2009-12-22 21:45:40 +00:00
mkdir -p ${basedir}/logs
rm ${basedir}/logs/${test}.log
pushd .
cd $test
${basedir}/${test} 2>&1 | tee ${basedir}/logs/${test}.log
popd
2009-12-08 00:48:35 +00:00
done