summaryrefslogtreecommitdiffstats
path: root/qa/workunits/suites/wac.sh
blob: a61148859a22a74236deb7b30030a0a62e442869 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env 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