mirror of
https://github.com/ceph/ceph
synced 2025-01-23 11:33:20 +00:00
13 lines
170 B
Bash
13 lines
170 B
Bash
|
#!/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
|