File: issue588.sh

package info (click to toggle)
darcs 2.0.2-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 6,400 kB
  • ctags: 1,048
  • sloc: haskell: 24,937; perl: 9,736; sh: 3,369; ansic: 1,913; makefile: 17; xml: 14
file content (32 lines) | stat: -rw-r--r-- 714 bytes parent folder | download | duplicates (4)
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"

set -ev

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 --no-test

rm -rf temp1