From: Ken Dreyer Date: Tue, 6 Jan 2015 15:16:20 +0000 (-0700) Subject: qa: drop tiobench suite X-Git-Tag: v0.92~67^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=bea2d4a8f7008d956364590ec43f0e9e6c06c6a0;p=ceph.git qa: drop tiobench suite The tiobench software has been abandoned upstream for years. Fedora and Debian are no longer shipping the tiobench package, so we've had to carry the package ourselves in the Ceph project, and we're trying to slim down our dependencies where it makes sense to do so. Nuke the tiobench suite. http://tracker.ceph.com/issues/10152 Refs: #10152 Signed-off-by: Ken Dreyer --- diff --git a/qa/workunits/suites/tiobench.sh b/qa/workunits/suites/tiobench.sh deleted file mode 100755 index 9bc71c630476..000000000000 --- a/qa/workunits/suites/tiobench.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash -x - -die() { - echo $@ - exit 1 -} - -which tiotest || die "you must install the tiobench package" - -#timer_fail() { -# echo "timer expired: tiobench has timed out." -# exit 1 -#} - -#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.