mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
15 lines
305 B
Bash
15 lines
305 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
test_description='rebase should reread the todo file if an exec modifies it'
|
||
|
|
||
|
. ./test-lib.sh
|
||
|
|
||
|
test_expect_success 'rebase exec modifies rebase-todo' '
|
||
|
test_commit initial &&
|
||
|
todo=.git/rebase-merge/git-rebase-todo &&
|
||
|
git rebase HEAD -x "echo exec touch F >>$todo" &&
|
||
|
test -e F
|
||
|
'
|
||
|
|
||
|
test_done
|