summaryrefslogtreecommitdiffstats
path: root/sanity/system_light/scripts/syscallbench.sh
blob: c257e41f707f6d2e9159342fb5a65cce3edd9a16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash

function update_tools()
{ 
    cd $TOOL_DIR
    echo "In $TOOL_DIR"
    git pull
    make
    echo "Switching to previous directory"
    cd -
}

function syscall_test()
{
    $SYSCALL_BIN > $LOG_DIR/`date +%F`
    if [ $? -ne 0 ]; then
        echo "syscall_test failed"
        return 11;
    fi
}

function main()
{
    update_tools;
    echo "start:`date +%T`"
    syscall_test;
    if [ $? -ne 0 ]; then
	echo "end:`date +%T`"
        return 11;
    fi
}

main "$@"