summaryrefslogtreecommitdiffstats
path: root/src/ceph/qa/workunits/suites/fsstress.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/ceph/qa/workunits/suites/fsstress.sh')
-rwxr-xr-xsrc/ceph/qa/workunits/suites/fsstress.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/ceph/qa/workunits/suites/fsstress.sh b/src/ceph/qa/workunits/suites/fsstress.sh
deleted file mode 100755
index 92e123b..0000000
--- a/src/ceph/qa/workunits/suites/fsstress.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-
-BIN_PATH=${TESTDIR}/fsstress/ltp-full-20091231/testcases/kernel/fs/fsstress/fsstress
-
-path=`pwd`
-trap "rm -rf ${TESTDIR}/fsstress" EXIT
-mkdir -p ${TESTDIR}/fsstress
-cd ${TESTDIR}/fsstress
-wget -q -O ${TESTDIR}/fsstress/ltp-full.tgz http://download.ceph.com/qa/ltp-full-20091231.tgz
-tar xzf ${TESTDIR}/fsstress/ltp-full.tgz
-rm ${TESTDIR}/fsstress/ltp-full.tgz
-cd ${TESTDIR}/fsstress/ltp-full-20091231/testcases/kernel/fs/fsstress
-make
-cd $path
-
-command="${BIN_PATH} -d fsstress-`hostname`$$ -l 1 -n 1000 -p 10 -v"
-
-echo "Starting fsstress $command"
-mkdir fsstress`hostname`-$$
-$command