summaryrefslogtreecommitdiffstats
path: root/sanity/system_light/scripts/fsx/fsx_run.sh
blob: 4807001ad48c8f6ee1b88adb998a481e9bf56add (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

#performs read,write operations on the given file and tests the performance

function main ()
{
    cp $FSX_FILE_ORIG $FSX_FILE

    echo "start:`date +%T`"
    time fsx -R -W -N $NUM_OPS $FSX_FILE 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 "$@";