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
|
#!/usr/bin/env bash
# For issue588, "amend-record --look-for-adds end up with two "addfile" entries"
. ./lib
rm -rf temp1
darcs init --repodir temp1
# Setup f with contents foo.
echo foo > temp1/f
darcs add --repodir temp1 f
darcs rec --repodir temp1 -am p1
# Remove f, and amend p1, but only the hunk not the rmfile.
# Here we use look-for-adds to trigger the bug
rm temp1/f
echo yyd | darcs amend-record --repodir temp1 --look-for-adds
darcs changes --repodir temp1 --last 1 -v
echo show the buggy pending
cat temp1/_darcs/patches/pending
echo bar > temp1/f
echo y | darcs amend-record --repodir temp1 --all
darcs changes --repodir temp1 --last 1 -v
darcs check --repodir temp1
rm -rf temp1
|