mirror of
https://github.com/ceph/ceph
synced 2024-12-23 11:54:11 +00:00
f2aef3e1da
Signed-off-by: Sage Weil <sage.weil@dreamhost.com>
25 lines
365 B
Bash
Executable File
25 lines
365 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
die() {
|
|
echo $@
|
|
exit 1
|
|
}
|
|
|
|
timer_fail() {
|
|
echo "timer expired: tiobench has timed out."
|
|
exit 1
|
|
}
|
|
|
|
which tiotest || die "you must install the tiobench package"
|
|
|
|
trap timer_fail ALRM
|
|
|
|
pid=$$
|
|
( sleep 420 ; kill -14 $pid ) &
|
|
|
|
for i in `seq 1 10`; do
|
|
tiotest -f 20 -t 10 -d . -T -c -D 20 -r 1000 || die "tiotest failed"
|
|
done
|
|
|
|
echo OK.
|