aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin/c
blob: a7b752cc674ee27ff69357fc1d3ce17630a36a9b (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
#!/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

git checkout $CLEAN
./gyp_skia >/dev/null
ninja -C out/Release nanobench
out/Release/nanobench $@ --samples $SAMPLES -v 2> $CLEAN.log

git checkout $BRANCH
./gyp_skia >/dev/null
ninja -C out/Release nanobench
out/Release/nanobench $@ --samples $SAMPLES -v 2> $BRANCH.log

compare $CLEAN.log $BRANCH.log