2009-11-13 00:44:35 +00:00
|
|
|
#!/bin/bash -x
|
|
|
|
|
2009-11-13 22:38:50 +00:00
|
|
|
set -e
|
2009-11-13 00:44:35 +00:00
|
|
|
|
2009-12-02 00:18:42 +00:00
|
|
|
basedir=`echo $0 | sed 's/[^/]*$//g'`.
|
|
|
|
testdir="$1"
|
2009-11-13 00:44:35 +00:00
|
|
|
|
2009-12-08 00:48:35 +00:00
|
|
|
[ ${basedir:0:1} == "." ] && basedir=`pwd`/${basedir:1}
|
|
|
|
|
2009-12-02 00:18:42 +00:00
|
|
|
test -d $testdir || ( echo "specify test dir" && exit 1 )
|
|
|
|
cd $testdir
|
2009-11-13 00:44:35 +00:00
|
|
|
|
|
|
|
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
|