mirror of https://github.com/ceph/ceph
24 lines
536 B
Bash
Executable File
24 lines
536 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
set -e
|
|
|
|
basedir=`echo $0 | sed 's/[^/]*$//g'`.
|
|
testdir="$1"
|
|
|
|
[ ${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
|
|
mkdir -p ${basedir}/logs
|
|
test -e ${basedir}/logs/${test}.log && rm ${basedir}/logs/${test}.log
|
|
pushd .
|
|
cd $test
|
|
${basedir}/${test} 2>&1 | tee ${basedir}/logs/${test}.log
|
|
popd
|
|
done
|