summaryrefslogtreecommitdiffstats
path: root/sanity/system_light/scripts/syscallbench/syscallbench.sh
blob: ac49b23b80731e3a30e4a5894ba8d0c83969eae3 (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 "$@"