summaryrefslogtreecommitdiffstats
path: root/sanity/system_light/scripts/fsx_test.sh
blob: 8cf5fe8b1ddb8f7f68c8b0fc0fa96a21a33228e5 (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 "$@";