summaryrefslogtreecommitdiffstats
path: root/sanity/system_light/scripts/dbench_test.sh
blob: fee116f9c3fbde0357d41fdbedf2138ca3f41cf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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 "$@";