aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin/ac
blob: 05fd6051455534232efdb58d0b942ae1f6e3bd58 (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
#!/bin/sh

set -e

BRANCH=$(git branch | grep \* | cut -d" "  -f 2)
CLEAN=${CLEAN-clean}
SAMPLES=100

if [ $BRANCH == $CLEAN ]; then
    echo "Comparing $BRANCH to itself."
    exit 1
fi

if [ ! -f $CLEAN.log ]; then
    git checkout $CLEAN
    ./gyp_skia >/dev/null
    platform_tools/android/bin/android_ninja -t Release nanobench
    platform_tools/android/bin/android_run_skia -t Release nanobench $@ --skps /data/local/tmp/skps -i /data/local/tmp/resources --samples $SAMPLES -v > $CLEAN.log
fi

git checkout $BRANCH
./gyp_skia >/dev/null
platform_tools/android/bin/android_ninja -t Release nanobench
platform_tools/android/bin/android_run_skia -t Release nanobench $@ --skps /data/local/tmp/skps -i /data/local/tmp/resources --samples $SAMPLES -v > $BRANCH.log

compare $CLEAN.log $BRANCH.log