mirror of
https://github.com/ceph/ceph
synced 2025-01-27 05:25:10 +00:00
19 lines
275 B
Bash
Executable File
19 lines
275 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
set -e
|
|
|
|
basedir=`pwd`
|
|
testdir="${basedir}/testspace"
|
|
|
|
mkdir -p $testdir
|
|
|
|
for test in `cd $basedir && find workunits/* | grep .sh`
|
|
do
|
|
cd $testdir
|
|
echo "------ running test $test ------"
|
|
mkdir -p $test
|
|
pushd .
|
|
cd $test
|
|
${basedir}/${test}
|
|
popd
|
|
done |