summaryrefslogtreecommitdiffstats
path: root/sanity/system_light/scripts/dbench_test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sanity/system_light/scripts/dbench_test.sh')
-rwxr-xr-xsanity/system_light/scripts/dbench_test.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/sanity/system_light/scripts/dbench_test.sh b/sanity/system_light/scripts/dbench_test.sh
deleted file mode 100755
index fee116f..0000000
--- a/sanity/system_light/scripts/dbench_test.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-
-function main()
-{
-#runs $3 multiple clients on mount point and tests the performance and -t option ($2) tells the time for which it should be run
- echo "start:`date +%T`"
- time dbench -t $TIME -s -S $DBENCH_CLNTS 2>>$LOG_FILE 1>>$LOG_FILE
-
-
- if [ $? -ne 0 ]; then
- echo "end:`date +%T`"
- return 11;
- else
- echo "end:`date +%T`"
- return 0;
- fi
-
-}
-
-main "$@"; \ No newline at end of file