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

#This program runs the tool postmark which is a filesystem benchmark program. To know the details of it see the man page.
function main()
{

    echo "start:`date +%T`"
    time postmark $POST_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 "$@";