1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2026-04-29 12:54:10 +02:00
Files
FFmpeg/tools/bisect-create
T

47 lines
1.1 KiB
Bash
Raw Normal View History

2012-07-02 16:04:30 +02:00
#!/bin/sh
set -e
2012-07-07 14:49:44 +02:00
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
2012-07-07 14:49:44 +02:00
if ! git show master:tools/bisect-create | diff - tools/ffbisect > /dev/null ; then
echo updating tools/ffbisect script to HEAD.
2012-07-07 14:49:44 +02:00
git show master:tools/bisect-create > tools/ffbisect
chmod u+x tools/ffbisect
tools/ffbisect $*
exit 0
fi
2012-07-02 16:04:30 +02:00
case "$1" in
need)
case $2 in
ffmpeg|ffplay|ffprobe|ffserver)
echo $2.c >> tools/bisect.need
2012-07-02 16:04:30 +02:00
;;
esac
;;
start|reset)
echo . > tools/bisect.need
2012-07-02 16:04:30 +02:00
git bisect $*
;;
skip)
git bisect $*
;;
good|bad)
git bisect $*
until ls `cat tools/bisect.need` > /dev/null 2> /dev/null; do
2012-07-02 16:04:30 +02:00
git bisect skip || break
done
;;
2012-07-11 23:12:00 +02:00
run)
shift # remove "run" from arguments
git bisect run sh -c "ls \`cat tools/bisect.need\` > /dev/null 2> /dev/null || exit 125; \"\$@\"" sh "$@"
;;
2012-07-02 16:04:30 +02:00
esac