summaryrefslogtreecommitdiff
path: root/tools/bisect-create
blob: ee6ec3feb82f46c2835afb963cab5184809d8f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/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)
                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