mtklein | 7ba39cb | 2014-11-24 12:39:59 -0800 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | set -e |
| 4 | |
| 5 | BRANCH=$(git branch | grep \* | cut -d" " -f 2) |
| 6 | CLEAN=${CLEAN-clean} |
| 7 | SAMPLES=100 |
| 8 | |
kkinnunen | c77f6af | 2015-05-15 05:35:50 -0700 | [diff] [blame] | 9 | if [ "$BRANCH" = "$CLEAN" ]; then |
mtklein | 7ba39cb | 2014-11-24 12:39:59 -0800 | [diff] [blame] | 10 | echo "Comparing $BRANCH to itself." |
| 11 | exit 1 |
| 12 | fi |
| 13 | |
mtklein | 205de46 | 2015-01-23 10:39:55 -0800 | [diff] [blame] | 14 | if [ ! -f $CLEAN.log ]; then |
| 15 | git checkout $CLEAN |
| 16 | ./gyp_skia >/dev/null |
| 17 | platform_tools/android/bin/android_ninja -t Release nanobench |
| 18 | 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 |
| 19 | fi |
mtklein | 7ba39cb | 2014-11-24 12:39:59 -0800 | [diff] [blame] | 20 | |
| 21 | git checkout $BRANCH |
| 22 | ./gyp_skia >/dev/null |
| 23 | platform_tools/android/bin/android_ninja -t Release nanobench |
| 24 | 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 |
| 25 | |
kkinnunen | c77f6af | 2015-05-15 05:35:50 -0700 | [diff] [blame] | 26 | ./bin/compare $CLEAN.log $BRANCH.log |