~ubuntu-branches/ubuntu/quantal/ceph/quantal

« back to all changes in this revision

Viewing changes to qa/workunits/suites/ffsb.sh

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-07-16 09:56:24 UTC
  • mfrom: (0.3.11)
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: package-import@ubuntu.com-20120716095624-azr2w4hbhei1rxmx
Tags: upstream-0.48
ImportĀ upstreamĀ versionĀ 0.48

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
set -e
 
4
 
 
5
mydir=`dirname $0`
 
6
 
 
7
wget http://ceph.newdream.net/qa/ffsb.tar.bz2
 
8
tar jxvf ffsb.tar.bz2
 
9
cd ffsb-*
 
10
./configure
 
11
make
 
12
cd ..
 
13
mkdir tmp
 
14
cd tmp
 
15
 
 
16
for f in $mydir/*.ffsb
 
17
do
 
18
    ../ffsb-*/ffsb $f
 
19
done
 
20
cd ..
 
21
rm -r tmp ffsb*
 
22