summaryrefslogtreecommitdiffstats
path: root/src/ceph/qa/workunits/suites/wac.sh
blob: 49b4f1464e1c20c725344bb1004a6797494486f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

set -ex

wget http://download.ceph.com/qa/wac.c
gcc -o wac wac.c
set +e
timeout 5m ./wac -l 65536 -n 64 -r wac-test
RET=$?
set -e
[[ $RET -eq 124 ]]
echo OK