summaryrefslogtreecommitdiffstats
path: root/sanity/system_light/scripts/dbench/dbench_run.sh
blob: 68875120dda9144c04673cb23fc8d359ad1b298b (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 "$@";