summaryrefslogtreecommitdiff
path: root/ffmpeg1/tools/bisect-create
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2013-09-05 17:55:35 +0100
committerTim Redfern <tim@eclectronics.org>2013-09-05 17:55:35 +0100
commit741fb4b9e135cfb161a749db88713229038577bb (patch)
tree08bc9925659cbcac45162bacf31dc6336d4f60b4 /ffmpeg1/tools/bisect-create
parenta2e1bf3495b7bfefdaedb8fc737e969ab06df079 (diff)
making act segmenter
Diffstat (limited to 'ffmpeg1/tools/bisect-create')
-rwxr-xr-xffmpeg1/tools/bisect-create46
1 files changed, 0 insertions, 46 deletions
diff --git a/ffmpeg1/tools/bisect-create b/ffmpeg1/tools/bisect-create
deleted file mode 100755
index fc60e86..0000000
--- a/ffmpeg1/tools/bisect-create
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/sh
-
-set -e
-
-if test "bisect-create" = "`basename $0`" ; then
- echo tools/ffbisect created
- git show master:tools/bisect-create > tools/ffbisect
- chmod u+x tools/ffbisect
- exit 1
-fi
-
-if ! git show master:tools/bisect-create | diff - tools/ffbisect > /dev/null ; then
- echo updating tools/ffbisect script to HEAD.
- git show master:tools/bisect-create > tools/ffbisect
- chmod u+x tools/ffbisect
- tools/ffbisect $*
- exit 0
-fi
-
-case "$1" in
- need)
- case $2 in
- ffmpeg|ffplay|ffprobe|ffserver)
- echo $2.c >> tools/bisect.need
- ;;
- esac
- ;;
- start|reset)
- echo . > tools/bisect.need
- git bisect $*
- ;;
- skip)
- git bisect $*
- ;;
- good|bad)
- git bisect $*
-
- until ls `cat tools/bisect.need` > /dev/null 2> /dev/null; do
- git bisect skip || break
- done
- ;;
- run)
- shift # remove "run" from arguments
- git bisect run sh -c "ls \`cat tools/bisect.need\` > /dev/null 2> /dev/null || exit 125; \"\$@\"" sh "$@"
- ;;
-esac