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