c77f6af7c3
Make the bin/c and bin/ac scripts work with sh. The scripts are run with /bin/sh shebang, which fails atleast on ubuntu 12.04 /bin/sh. The sh in Ubuntu 12.04 is dash. The fixes are according to the suggestions in http://mywiki.wooledge.org/Bashism Also run "compare" script with explicit ./bin/ path to support people who do not have skia/bin in PATH. Review URL: https://codereview.chromium.org/1139033005
27 lines
548 B
Bash
Executable File
27 lines
548 B
Bash
Executable File
#!/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
|
|
|
|
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
|
|
ninja -C out/Release nanobench
|
|
out/Release/nanobench $@ --samples $SAMPLES -v 2> $BRANCH.log
|
|
|
|
./bin/compare $CLEAN.log $BRANCH.log
|