]> git.proxmox.com Git - ceph.git/blame - ceph/qa/workunits/suites/ffsb.sh
update sources to 12.2.8
[ceph.git] / ceph / qa / workunits / suites / ffsb.sh
CommitLineData
7c673cae
FG
1#!/bin/bash
2
3set -e
4
5mydir=`dirname $0`
6
7wget http://download.ceph.com/qa/ffsb.tar.bz2
8tar jxvf ffsb.tar.bz2
1adf2230
AA
9cd ffsb-6.0-rc2
10patch -p1 < $mydir/ffsb.patch
7c673cae
FG
11./configure
12make
13cd ..
14mkdir tmp
15cd tmp
16
17for f in $mydir/*.ffsb
18do
19 ../ffsb-*/ffsb $f
20done
21cd ..
22rm -r tmp ffsb*
23