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

function main ()
{
    echo "start:`date +%T`"
    time $TIO_BIN -d $THIS_TEST_DIR -W -S -c 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 "$@";