summaryrefslogtreecommitdiffstats
path: root/qa/workunits/suites/ffsb.sh
diff options
context:
space:
mode:
Diffstat (limited to 'qa/workunits/suites/ffsb.sh')
-rwxr-xr-xqa/workunits/suites/ffsb.sh31
1 files changed, 31 insertions, 0 deletions
diff --git a/qa/workunits/suites/ffsb.sh b/qa/workunits/suites/ffsb.sh
new file mode 100755
index 000000000..bf95a05c4
--- /dev/null
+++ b/qa/workunits/suites/ffsb.sh
@@ -0,0 +1,31 @@
+#!/usr/bin/env bash
+
+set -e
+
+mydir=`dirname $0`
+
+# try it again if the clone is slow and the second time
+trap -- 'retry' EXIT
+retry() {
+ rm -rf ffsb
+ # double the timeout value
+ timeout 3600 git clone https://git.ceph.com/ffsb.git --depth 1
+}
+rm -rf ffsb
+timeout 1800 git clone https://git.ceph.com/ffsb.git --depth 1
+trap - EXIT
+
+cd ffsb
+./configure
+make
+cd ..
+mkdir tmp
+cd tmp
+
+for f in $mydir/*.ffsb
+do
+ ../ffsb/ffsb $f
+done
+cd ..
+rm -r tmp ffsb*
+