File: issue588.sh

package info (click to toggle)
darcs 2.18.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,960 kB
  • sloc: haskell: 47,748; sh: 13,466; ansic: 447; perl: 134; makefile: 8
file content (32 lines) | stat: -rw-r--r-- 704 bytes parent folder | download | duplicates (5)
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