OLD | NEW |
(Empty) | |
| 1 #!/bin/sh |
| 2 |
| 3 set -e |
| 4 |
| 5 BRANCH=$(git branch | grep \* | cut -d" " -f 2) |
| 6 CLEAN=${CLEAN-clean} |
| 7 SAMPLES=100 |
| 8 |
| 9 if [ $BRANCH == $CLEAN ]; then |
| 10 echo "Comparing $BRANCH to itself." |
| 11 exit 1 |
| 12 fi |
| 13 |
| 14 git checkout $CLEAN |
| 15 ./gyp_skia >/dev/null |
| 16 ninja -C out/Release nanobench |
| 17 out/Release/nanobench $@ --samples $SAMPLES -v 2> $CLEAN.log |
| 18 |
| 19 git checkout $BRANCH |
| 20 ./gyp_skia >/dev/null |
| 21 ninja -C out/Release nanobench |
| 22 out/Release/nanobench $@ --samples $SAMPLES -v 2> $BRANCH.log |
| 23 |
| 24 compare $CLEAN.log $BRANCH.log |
OLD | NEW |