[BACK]Return to run.dbenchmulti CVS log [TXT][DIR] Up to [Development] / xfs-cmds / xfstests

File: [Development] / xfs-cmds / xfstests / run.dbenchmulti (download)

Revision 1.1, Thu Sep 25 01:57:56 2003 UTC (14 years, 1 month ago) by fsgqa
Branch: MAIN
CVS Tags: HEAD

Cleanup dbench benchmark scripts

#!/bin/sh
# 
# Does several dbench runs with increasing numbers of client
# 

[ -z "$here" ] && here=`pwd`
. $here/common.dbench

if [ $# -gt 0 ]; then
	_format_header_multipass 1 2 10 20 #50
	exit 0
fi
tmpfile=/var/tmp/dbench.$$
rm -f $tmpfile
_run_dbench 1	>> $tmpfile
_run_dbench 2	>> $tmpfile
_run_dbench 10	>> $tmpfile
_run_dbench 20	>> $tmpfile
#_run_dbench 50	>> $tmpfile
_filter_dbench_multipass < $tmpfile
rm -f $tmpfile