From 205de46789e6de3ef99b148845821495a7da5d5b Mon Sep 17 00:00:00 2001 From: mtklein Date: Fri, 23 Jan 2015 10:39:55 -0800 Subject: run clean branch baseline only once BUG=skia: Review URL: https://codereview.chromium.org/874643002 --- bin/ac | 10 ++++++---- bin/c | 10 ++++++---- 2 files changed, 12 insertions(+), 8 deletions(-) (limited to 'bin') 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 -- cgit v1.2.3