3 # Copyright (c) 2007 Christian Couder
5 test_description
='Tests git-bisect run functionality'
14 if [ -f "$_file" ]; then
15 echo "$_line" >> $_file ||
return $?
16 MSG
="Add <$_line> into <$_file>."
18 echo "$_line" > $_file ||
return $?
19 git add
$_file ||
return $?
20 MSG
="Create file <$_file> with <$_line> inside."
23 git-commit
-m "$MSG" $_file
31 'set up basic repo with 1 file (hello) and 4 commits' \
32 'add_line_into_file "1: Hello World" hello &&
33 add_line_into_file "2: A new day for git" hello &&
34 add_line_into_file "3: Another new day for git" hello &&
35 add_line_into_file "4: Ciao for now" hello &&
36 HASH1=$(git rev-list HEAD | tail -1) &&
37 HASH3=$(git rev-list HEAD | head -2 | tail -1) &&
38 HASH4=$(git rev-list HEAD | head -1)'
40 # We want to automatically find the commit that
41 # introduced "Another" into hello.
43 'git bisect run simple case' \
44 'echo "#!/bin/sh" > test_script.sh &&
45 echo "grep Another hello > /dev/null" >> test_script.sh &&
46 echo "test \$? -ne 0" >> test_script.sh &&
47 chmod +x test_script.sh &&
49 git bisect good $HASH1 &&
50 git bisect bad $HASH4 &&
51 git bisect run ./test_script.sh > my_bisect_log.txt &&
52 grep "$HASH3 is first bad commit" my_bisect_log.txt'