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

Side by Side Diff: bin/c

Issue 874643002: run clean branch baseline only once (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 11 months 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 unified diff | Download patch
« no previous file with comments | « bin/ac ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/sh 1 #!/bin/sh
2 2
3 set -e 3 set -e
4 4
5 BRANCH=$(git branch | grep \* | cut -d" " -f 2) 5 BRANCH=$(git branch | grep \* | cut -d" " -f 2)
6 CLEAN=${CLEAN-clean} 6 CLEAN=${CLEAN-clean}
7 SAMPLES=100 7 SAMPLES=100
8 8
9 if [ $BRANCH == $CLEAN ]; then 9 if [ $BRANCH == $CLEAN ]; then
10 echo "Comparing $BRANCH to itself." 10 echo "Comparing $BRANCH to itself."
11 exit 1 11 exit 1
12 fi 12 fi
13 13
14 git checkout $CLEAN 14 if [ ! -f $CLEAN.log ]; then
15 ./gyp_skia >/dev/null 15 git checkout $CLEAN
16 ninja -C out/Release nanobench 16 ./gyp_skia >/dev/null
17 out/Release/nanobench $@ --samples $SAMPLES -v 2> $CLEAN.log 17 ninja -C out/Release nanobench
18 out/Release/nanobench $@ --samples $SAMPLES -v 2> $CLEAN.log
19 fi
18 20
19 git checkout $BRANCH 21 git checkout $BRANCH
20 ./gyp_skia >/dev/null 22 ./gyp_skia >/dev/null
21 ninja -C out/Release nanobench 23 ninja -C out/Release nanobench
22 out/Release/nanobench $@ --samples $SAMPLES -v 2> $BRANCH.log 24 out/Release/nanobench $@ --samples $SAMPLES -v 2> $BRANCH.log
23 25
24 compare $CLEAN.log $BRANCH.log 26 compare $CLEAN.log $BRANCH.log
OLDNEW
« no previous file with comments | « bin/ac ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698