blob: 129a4e142bb8184887f5fe322b41716927415644 [file] [log] [blame]
mtklein7ba39cb2014-11-24 12:39:59 -08001#!/bin/sh
2
3set -e
4
5BRANCH=$(git branch | grep \* | cut -d" " -f 2)
6CLEAN=${CLEAN-clean}
7SAMPLES=100
8
9if [ $BRANCH == $CLEAN ]; then
10 echo "Comparing $BRANCH to itself."
11 exit 1
12fi
13
mtklein205de462015-01-23 10:39:55 -080014if [ ! -f $CLEAN.log ]; then
15 git checkout $CLEAN
16 ./gyp_skia >/dev/null
17 ninja -C out/Release nanobench
18 out/Release/nanobench $@ --samples $SAMPLES -v 2> $CLEAN.log
19fi
mtklein7ba39cb2014-11-24 12:39:59 -080020
21git checkout $BRANCH
22./gyp_skia >/dev/null
23ninja -C out/Release nanobench
24out/Release/nanobench $@ --samples $SAMPLES -v 2> $BRANCH.log
25
26compare $CLEAN.log $BRANCH.log