summaryrefslogtreecommitdiffstats
path: root/src/ceph/qa/workunits/suites/ffsb.sh
blob: 9ed66ab00633d8d8c068d77178a58ff295f69853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/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*