mirror of
https://github.com/ceph/ceph
synced 2025-01-08 20:21:33 +00:00
512cc974fb
Signed-off-by: Colin McCabe <colinm@hq.newdream.net>
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.
|