ceph/qa/runallonce.sh

22 lines
378 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}
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
2009-12-08 00:48:35 +00:00
done