1#!/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 14if [ ! -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 19fi 20 21git checkout $BRANCH 22./gyp_skia >/dev/null 23platform_tools/android/bin/android_ninja -t Release nanobench 24platform_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 26./bin/compare $CLEAN.log $BRANCH.log 27