]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
qa: drop tiobench suite 3301/head
authorKen Dreyer <kdreyer@redhat.com>
Tue, 6 Jan 2015 15:16:20 +0000 (08:16 -0700)
committerKen Dreyer <kdreyer@redhat.com>
Tue, 6 Jan 2015 16:00:16 +0000 (09:00 -0700)
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 <kdreyer@redhat.com>
qa/workunits/suites/tiobench.sh [deleted file]

diff --git a/qa/workunits/suites/tiobench.sh b/qa/workunits/suites/tiobench.sh
deleted file mode 100755 (executable)
index 9bc71c6..0000000
+++ /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.