summaryrefslogtreecommitdiff
path: root/binder/bindertest.sh
blob: 45e555341bc9449f682d3b8e01ff607eaa8446fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/system/bin/sh

chmod 777 /data/nativebenchmark/binderAddInts
if [ -z "$1" ]; then
        /data/nativebenchmark/binderAddInts -n 10
else
        /data/nativebenchmark/binderAddInts -n $1
fi
if [ $? -eq 0 ]; then
    echo "[bindertest]: test passed"
else
    echo "[bindertest]: test failed"
fi