Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2632)

Unified Diff: bin/ac

Issue 703713002: Add nanobench stats scripts to Skia repo. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: ac Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | bin/c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bin/ac
diff --git a/bin/ac b/bin/ac
new file mode 100755
index 0000000000000000000000000000000000000000..d9e0fd3bfb6ae5c5373ea7b93a6742d855626a33
--- /dev/null
+++ b/bin/ac
@@ -0,0 +1,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
+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
+
+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
« no previous file with comments | « no previous file | bin/c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698