aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin/c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/c')
-rwxr-xr-xbin/c26
1 files changed, 0 insertions, 26 deletions
diff --git a/bin/c b/bin/c
deleted file mode 100755
index fca46d40f6..0000000000
--- a/bin/c
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/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
- python gyp_skia >/dev/null
- ninja -C out/Release nanobench
- out/Release/nanobench $@ --samples $SAMPLES -v 2> $CLEAN.log
-fi
-
-git checkout $BRANCH
-python gyp_skia >/dev/null
-ninja -C out/Release nanobench
-out/Release/nanobench $@ --samples $SAMPLES -v 2> $BRANCH.log
-
-python bin/compare $CLEAN.log $BRANCH.log