mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-12-04 17:46:45 +00:00
c673a90b0d
This script works like "git bisect" except that you can specify with "bisect need ffmpeg|ffplay|ffserver|ffprobe" which tool(s) are needed for testing a checkout Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
28 lines
437 B
Bash
Executable File
28 lines
437 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
need)
|
|
case $2 in
|
|
ffmpeg|ffplay|ffprobe|ffserver)
|
|
echo $2.c >> need
|
|
;;
|
|
esac
|
|
;;
|
|
start|reset)
|
|
echo . > need
|
|
git bisect $*
|
|
;;
|
|
skip)
|
|
git bisect $*
|
|
;;
|
|
good|bad)
|
|
git bisect $*
|
|
|
|
until ls `cat need` > /dev/null 2> /dev/null; do
|
|
git bisect skip || break
|
|
done
|
|
;;
|
|
esac
|