ceph/qa/workunits/suites/ffsb.sh
Sage Weil d4d65fbd6a qa: http://ceph.com/qa -> http://download.ceph.com/qa
Signed-off-by: Sage Weil <sage@redhat.com>
2015-09-24 18:10:46 -04:00

23 lines
236 B
Bash
Executable File

#!/bin/bash
set -e
mydir=`dirname $0`
wget http://download.ceph.com/qa/ffsb.tar.bz2
tar jxvf ffsb.tar.bz2
cd ffsb-*
./configure
make
cd ..
mkdir tmp
cd tmp
for f in $mydir/*.ffsb
do
../ffsb-*/ffsb $f
done
cd ..
rm -r tmp ffsb*