Skip to content
Snippets Groups Projects
Commit d1d3094b authored by Kyle Lippincott's avatar Kyle Lippincott
Browse files

patch: handle 0 context lines (diff.unified=0) when parsing patches

Previously, if there were no context lines, we would just keep updating the
ranges and the hunk, but not actually storing the hunk (just overwriting it each
time).  Thus a diff like this:

    $ hg diff --config diff.unified=0
    diff --git a/bar b/bar
    --- a/bar
    +++ b/bar
    @@ -1,0 +2,1 @@ 1
    +change1
    @@ -3,0 +5,1 @@ 3
    +change2

would come out of the parser like this (change1 is lost):

    bar:
    @@ -3,0 +5,1 @@ 3
    +change2

This had some really weird side effects for things like commit --interactive,
split, etc.

Differential Revision: https://phab.mercurial-scm.org/D5743
parent 1a4a41d3
No related branches found
No related tags found
No related merge requests found
......@@ -1609,6 +1609,7 @@
self.headers = []
def addrange(self, limits):
self.addcontext([])
fromstart, fromend, tostart, toend, proc = limits
self.fromline = int(fromstart)
self.toline = int(tostart)
......@@ -1629,6 +1630,8 @@
if self.context:
self.before = self.context
self.context = []
if self.hunk:
self.addcontext([])
self.hunk = hunk
def newfile(self, hdr):
......
......@@ -1807,3 +1807,38 @@
n 0 -1 unset subdir/f1
$ hg status -A subdir/f1
M subdir/f1
Test diff.unified=0
$ hg init $TESTTMP/b
$ cd $TESTTMP/b
$ cat > foo <<EOF
> 1
> 2
> 3
> 4
> 5
> EOF
$ hg ci -qAm initial
$ cat > foo <<EOF
> 1
> change1
> 2
> 3
> change2
> 4
> 5
> EOF
$ printf 'y\ny\ny\n' | hg ci -im initial --config diff.unified=0
diff --git a/foo b/foo
2 hunks, 2 lines changed
examine changes to 'foo'? [Ynesfdaq?] y
@@ -1,0 +2,1 @@ 1
+change1
record change 1/2 to 'foo'? [Ynesfdaq?] y
@@ -3,0 +5,1 @@ 3
+change2
record change 2/2 to 'foo'? [Ynesfdaq?] y
......@@ -103,6 +103,12 @@
abort: cannot split multiple revisions
[255]
This function splits a bit strangely primarily to avoid changing the behavior of
the test after a bug was fixed with how split/commit --interactive handled
`diff.unified=0`: when there were no context lines, it kept only the last diff
hunk. When running split, this meant that runsplit was always recording three commits,
one for each diff hunk, in reverse order (the base commit was the last diff hunk
in the file).
$ runsplit() {
> cat > $TESTTMP/messages <<EOF
> split 1
......@@ -113,5 +119,7 @@
> EOF
> cat <<EOF | hg split "$@"
> y
> n
> n
> y
> y
......@@ -116,5 +124,6 @@
> y
> y
> n
> y
> y
> y
......@@ -123,6 +132,6 @@
$ HGEDITOR=false runsplit
diff --git a/a b/a
1 hunks, 1 lines changed
3 hunks, 3 lines changed
examine changes to 'a'? [Ynesfdaq?] y
......@@ -127,5 +136,15 @@
examine changes to 'a'? [Ynesfdaq?] y
@@ -1,1 +1,1 @@
-1
+11
record change 1/3 to 'a'? [Ynesfdaq?] n
@@ -3,1 +3,1 @@ 2
-3
+33
record change 2/3 to 'a'? [Ynesfdaq?] n
@@ -5,1 +5,1 @@ 4
-5
+55
......@@ -129,7 +148,7 @@
@@ -5,1 +5,1 @@ 4
-5
+55
record this change to 'a'? [Ynesfdaq?] y
record change 3/3 to 'a'? [Ynesfdaq?] y
transaction abort!
rollback completed
......@@ -140,6 +159,6 @@
$ HGEDITOR="\"$PYTHON\" $TESTTMP/editor.py"
$ runsplit
diff --git a/a b/a
1 hunks, 1 lines changed
3 hunks, 3 lines changed
examine changes to 'a'? [Ynesfdaq?] y
......@@ -144,5 +163,15 @@
examine changes to 'a'? [Ynesfdaq?] y
@@ -1,1 +1,1 @@
-1
+11
record change 1/3 to 'a'? [Ynesfdaq?] n
@@ -3,1 +3,1 @@ 2
-3
+33
record change 2/3 to 'a'? [Ynesfdaq?] n
@@ -5,1 +5,1 @@ 4
-5
+55
......@@ -146,7 +175,7 @@
@@ -5,1 +5,1 @@ 4
-5
+55
record this change to 'a'? [Ynesfdaq?] y
record change 3/3 to 'a'? [Ynesfdaq?] y
EDITOR: HG: Splitting 1df0d5c5a3ab. Write commit message for the first split changeset.
EDITOR: a2
......@@ -160,6 +189,6 @@
EDITOR: HG: changed a
created new head
diff --git a/a b/a
1 hunks, 1 lines changed
2 hunks, 2 lines changed
examine changes to 'a'? [Ynesfdaq?] y
......@@ -164,5 +193,10 @@
examine changes to 'a'? [Ynesfdaq?] y
@@ -1,1 +1,1 @@
-1
+11
record change 1/2 to 'a'? [Ynesfdaq?] n
@@ -3,1 +3,1 @@ 2
-3
+33
......@@ -166,7 +200,7 @@
@@ -3,1 +3,1 @@ 2
-3
+33
record this change to 'a'? [Ynesfdaq?] y
record change 2/2 to 'a'? [Ynesfdaq?] y
EDITOR: HG: Splitting 1df0d5c5a3ab. So far it has been split into:
EDITOR: HG: - e704349bd21b: split 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment