aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin
diff options
context:
space:
mode:
authorGravatar mtklein <mtklein@chromium.org>2015-01-23 10:39:55 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-01-23 10:39:55 -0800
commit205de46789e6de3ef99b148845821495a7da5d5b (patch)
tree73d5e24e702943ad153316bd7914d58404de608c /bin
parentcf5d9c993dcbd75d4cefe2d1de25c2b9645f6957 (diff)
run clean branch baseline only once
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ac10
-rwxr-xr-xbin/c10
2 files changed, 12 insertions, 8 deletions
diff --git a/bin/ac b/bin/ac
index d9e0fd3bfb..05fd605145 100755
--- a/bin/ac
+++ b/bin/ac
@@ -11,10 +11,12 @@ if [ $BRANCH == $CLEAN ]; then
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
+if [ ! -f $CLEAN.log ]; then
+ 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
+fi
git checkout $BRANCH
./gyp_skia >/dev/null
diff --git a/bin/c b/bin/c
index a7b752cc67..129a4e142b 100755
--- a/bin/c
+++ b/bin/c
@@ -11,10 +11,12 @@ if [ $BRANCH == $CLEAN ]; then
exit 1
fi
-git checkout $CLEAN
-./gyp_skia >/dev/null
-ninja -C out/Release nanobench
-out/Release/nanobench $@ --samples $SAMPLES -v 2> $CLEAN.log
+if [ ! -f $CLEAN.log ]; then
+ git checkout $CLEAN
+ ./gyp_skia >/dev/null
+ ninja -C out/Release nanobench
+ out/Release/nanobench $@ --samples $SAMPLES -v 2> $CLEAN.log
+fi
git checkout $BRANCH
./gyp_skia >/dev/null