##// END OF EJS Templates
revisions: allow "x123" to refer to nodeid prefix "123"...
revisions: allow "x123" to refer to nodeid prefix "123" When resolving "123" to a revision, we try to interpret it as revnum before we try to interpret it as a nodeid hex prefix. This can lead to the shortest valid prefix being longer than necessary. This patch lets us write such nodeids in a shorter form by prefixing them with "x" instead of adding more hex digits until they're longer than the longest decimal revnum. On my hg repo with almost 69k revisions, turning this feature on saves on average 0.4% on the average nodeid length. That clearly doesn't justify this patch. However, it becomes more usefule when combined with the earlier patches in this series that let you disambiguate nodeid prefixes within a configured revset. Note that we attempt to resolve symbols as nodeid prefixes after we've exhausted all other posibilities, so this is a backwards compatible change (only queries that would previously fail may now succeed). I've still hidden this feature behind an experiemntal config option so we can roll it back if needed. Differential Revision: https://phab.mercurial-scm.org/D4041

File last commit:

r35386:469b06b4 default
r38891:7848f284 default
Show More
test-mq-header-from.t
974 lines | 19.7 KiB | text/troff | Tads3Lexer
/ tests / test-mq-header-from.t
Matt Mackall
tests: unify test-mq-header-from
r12462
$ echo "[extensions]" >> $HGRCPATH
$ echo "mq=" >> $HGRCPATH
$ echo "[diff]" >> $HGRCPATH
$ echo "nodates=true" >> $HGRCPATH
$ catlog() {
> cat .hg/patches/$1.patch | sed -e "s/^diff \-r [0-9a-f]* /diff -r ... /" \
> -e "s/^\(# Parent \).*/\1/"
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 > hg log --template "{rev}: {node|short} {desc} - {author}\n"
Matt Mackall
tests: unify test-mq-header-from
r12462 > }
$ runtest() {
> echo ==== init
> hg init a
> cd a
> hg qinit
>
>
> echo ==== qnew -U
> hg qnew -U 1.patch
> catlog 1
>
> echo ==== qref
> echo "1" >1
> hg add
> hg qref
> catlog 1
>
> echo ==== qref -u
> hg qref -u mary
> catlog 1
>
> echo ==== qnew
> hg qnew 2.patch
> echo "2" >2
> hg add
> hg qref
> catlog 2
>
> echo ==== qref -u
> hg qref -u jane
> catlog 2
>
>
> echo ==== qnew -U -m
> hg qnew -U -m "Three" 3.patch
> catlog 3
>
> echo ==== qref
> echo "3" >3
> hg add
> hg qref
> catlog 3
>
> echo ==== qref -m
> hg qref -m "Drei"
> catlog 3
>
> echo ==== qref -u
> hg qref -u mary
> catlog 3
>
> echo ==== qref -u -m
> hg qref -u maria -m "Three (again)"
> catlog 3
>
> echo ==== qnew -m
> hg qnew -m "Four" 4.patch
> echo "4" >4of t
> hg add
> hg qref
> catlog 4
>
> echo ==== qref -u
> hg qref -u jane
> catlog 4
>
>
> echo ==== qnew with HG header
> hg qnew --config 'mq.plain=true' 5.patch
> hg qpop
> echo "# HG changeset patch" >>.hg/patches/5.patch
> echo "# User johndoe" >>.hg/patches/5.patch
> hg qpush 2>&1 | grep 'now at'
> catlog 5
>
> echo ==== hg qref
> echo "5" >5
> hg add
> hg qref
> catlog 5
>
> echo ==== hg qref -U
> hg qref -U
> catlog 5
>
> echo ==== hg qref -u
> hg qref -u johndeere
> catlog 5
>
>
> echo ==== qnew with plain header
> hg qnew --config 'mq.plain=true' -U 6.patch
> hg qpop
> hg qpush 2>&1 | grep 'now at'
> catlog 6
>
> echo ==== hg qref
> echo "6" >6
> hg add
> hg qref
> catlog 6
>
> echo ==== hg qref -U
> hg qref -U
> catlog 6
>
> echo ==== hg qref -u
> hg qref -u johndeere
> catlog 6
>
>
> echo ==== "qpop -a / qpush -a"
> hg qpop -a
> hg qpush -a
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 > hg log --template "{rev}: {node|short} {desc} - {author}\n"
Matt Mackall
tests: unify test-mq-header-from
r12462 > }
======= plain headers
$ echo "[mq]" >> $HGRCPATH
$ echo "plain=true" >> $HGRCPATH
$ mkdir sandbox
$ (cd sandbox ; runtest)
==== init
==== qnew -U
From: test
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 0: a054644889e5 [mq]: 1.patch - test
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref
adding 1
From: test
diff -r ... 1
--- /dev/null
+++ b/1
@@ -0,0 +1,1 @@
+1
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 0: 2905f1e46ee0 [mq]: 1.patch - test
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -u
From: mary
diff -r ... 1
--- /dev/null
+++ b/1
@@ -0,0 +1,1 @@
+1
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qnew
adding 2
diff -r ... 2
--- /dev/null
+++ b/2
@@ -0,0 +1,1 @@
+2
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 1: 527f98a12a7a [mq]: 2.patch - test
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -u
From: jane
diff -r ... 2
--- /dev/null
+++ b/2
@@ -0,0 +1,1 @@
+2
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qnew -U -m
From: test
Mads Kiilerich
mq: when setting message in plain mode, separate it from header (issue4453)...
r23344
Matt Mackall
tests: unify test-mq-header-from
r12462 Three
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 2: 0ffa16a9088e Three - test
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref
adding 3
From: test
Mads Kiilerich
mq: when setting message in plain mode, separate it from header (issue4453)...
r23344
Matt Mackall
tests: unify test-mq-header-from
r12462 Three
diff -r ... 3
--- /dev/null
+++ b/3
@@ -0,0 +1,1 @@
+3
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 2: 83f1290c6086 Three - test
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -m
From: test
Mads Kiilerich
mq: when setting message in plain mode, separate it from header (issue4453)...
r23344
Matt Mackall
tests: unify test-mq-header-from
r12462 Drei
diff -r ... 3
--- /dev/null
+++ b/3
@@ -0,0 +1,1 @@
+3
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 2: b0d856328d4d Drei - test
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -u
From: mary
Mads Kiilerich
mq: when setting message in plain mode, separate it from header (issue4453)...
r23344
Matt Mackall
tests: unify test-mq-header-from
r12462 Drei
diff -r ... 3
--- /dev/null
+++ b/3
@@ -0,0 +1,1 @@
+3
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 2: bb9d4b28e6a6 Drei - mary
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -u -m
From: maria
Mads Kiilerich
mq: when setting message in plain mode, separate it from header (issue4453)...
r23344
Matt Mackall
tests: unify test-mq-header-from
r12462 Three (again)
diff -r ... 3
--- /dev/null
+++ b/3
@@ -0,0 +1,1 @@
+3
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qnew -m
adding 4of
Four
diff -r ... 4of
--- /dev/null
+++ b/4of
@@ -0,0 +1,1 @@
+4 t
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 3: b9f922d0da40 Four - test
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -u
From: jane
Mads Kiilerich
mq: when adding headers in plain mode, separate them from message (issue4453)...
r23346
Matt Mackall
tests: unify test-mq-header-from
r12462 Four
diff -r ... 4of
--- /dev/null
+++ b/4of
@@ -0,0 +1,1 @@
+4 t
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qnew with HG header
popping 5.patch
now at: 4.patch
now at: 5.patch
# HG changeset patch
# User johndoe
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 4: 72bc4a0467ef imported patch 5.patch - johndoe
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref
adding 5
# HG changeset patch
Mads Kiilerich
mq: refactor patchheader header ordering to match export (BC)...
r22546 # User johndoe
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
diff -r ... 5
--- /dev/null
+++ b/5
@@ -0,0 +1,1 @@
+5
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 4: ff5c06112e5a [mq]: 5.patch - johndoe
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref -U
# HG changeset patch
Mads Kiilerich
mq: refactor patchheader header ordering to match export (BC)...
r22546 # User test
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
diff -r ... 5
--- /dev/null
+++ b/5
@@ -0,0 +1,1 @@
+5
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 4: c947416c22b1 [mq]: 5.patch - test
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref -u
# HG changeset patch
Mads Kiilerich
mq: refactor patchheader header ordering to match export (BC)...
r22546 # User johndeere
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
diff -r ... 5
--- /dev/null
+++ b/5
@@ -0,0 +1,1 @@
+5
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 4: 1d898e201a22 [mq]: 5.patch - johndeere
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qnew with plain header
popping 6.patch
now at: 5.patch
now at: 6.patch
From: test
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 5: 7825a18ec839 imported patch 6.patch - test
4: 1d898e201a22 [mq]: 5.patch - johndeere
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref
adding 6
From: test
diff -r ... 6
--- /dev/null
+++ b/6
@@ -0,0 +1,1 @@
+6
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 5: 09d19592680d [mq]: 6.patch - test
4: 1d898e201a22 [mq]: 5.patch - johndeere
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref -U
From: test
diff -r ... 6
--- /dev/null
+++ b/6
@@ -0,0 +1,1 @@
+6
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 5: 09d19592680d [mq]: 6.patch - test
4: 1d898e201a22 [mq]: 5.patch - johndeere
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref -u
From: johndeere
diff -r ... 6
--- /dev/null
+++ b/6
@@ -0,0 +1,1 @@
+6
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 5: 32641ee07196 [mq]: 6.patch - johndeere
4: 1d898e201a22 [mq]: 5.patch - johndeere
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qpop -a / qpush -a
popping 6.patch
popping 5.patch
popping 4.patch
popping 3.patch
popping 2.patch
popping 1.patch
patch queue now empty
applying 1.patch
applying 2.patch
applying 3.patch
applying 4.patch
applying 5.patch
applying 6.patch
now at: 6.patch
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 5: 1fb083c80457 imported patch 6.patch - johndeere
4: 7e96e969691d imported patch 5.patch - johndeere
3: c7147533d3cd Four - jane
2: b383d04401ea Three (again) - maria
1: fac2da4efc3c imported patch 2.patch - jane
0: b6e237e8771b imported patch 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 $ rm -r sandbox
======= hg headers
$ echo "plain=false" >> $HGRCPATH
$ mkdir sandbox
$ (cd sandbox ; runtest)
==== init
==== qnew -U
# HG changeset patch
Mads Kiilerich
mq: write headers for new HG patches in the same order as export (BC)
r22520 # User test
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
Mads Kiilerich
mq: correctly make an empty line after description in new patches...
r22519
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 0: a054644889e5 [mq]: 1.patch - test
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref
adding 1
# HG changeset patch
Mads Kiilerich
mq: write headers for new HG patches in the same order as export (BC)
r22520 # User test
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
diff -r ... 1
--- /dev/null
+++ b/1
@@ -0,0 +1,1 @@
+1
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 0: 2905f1e46ee0 [mq]: 1.patch - test
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -u
# HG changeset patch
Mads Kiilerich
mq: write headers for new HG patches in the same order as export (BC)
r22520 # User mary
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
diff -r ... 1
--- /dev/null
+++ b/1
@@ -0,0 +1,1 @@
+1
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qnew
adding 2
# HG changeset patch
# Parent
diff -r ... 2
--- /dev/null
+++ b/2
@@ -0,0 +1,1 @@
+2
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 1: 527f98a12a7a [mq]: 2.patch - test
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -u
# HG changeset patch
# User jane
# Parent
diff -r ... 2
--- /dev/null
+++ b/2
@@ -0,0 +1,1 @@
+2
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qnew -U -m
# HG changeset patch
Mads Kiilerich
mq: write headers for new HG patches in the same order as export (BC)
r22520 # User test
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
Three
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 2: 0ffa16a9088e Three - test
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref
adding 3
# HG changeset patch
Mads Kiilerich
mq: write headers for new HG patches in the same order as export (BC)
r22520 # User test
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
Three
diff -r ... 3
--- /dev/null
+++ b/3
@@ -0,0 +1,1 @@
+3
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 2: 83f1290c6086 Three - test
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -m
# HG changeset patch
Mads Kiilerich
mq: write headers for new HG patches in the same order as export (BC)
r22520 # User test
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
Drei
diff -r ... 3
--- /dev/null
+++ b/3
@@ -0,0 +1,1 @@
+3
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 2: b0d856328d4d Drei - test
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -u
# HG changeset patch
Mads Kiilerich
mq: write headers for new HG patches in the same order as export (BC)
r22520 # User mary
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
Drei
diff -r ... 3
--- /dev/null
+++ b/3
@@ -0,0 +1,1 @@
+3
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 2: bb9d4b28e6a6 Drei - mary
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -u -m
# HG changeset patch
Mads Kiilerich
mq: write headers for new HG patches in the same order as export (BC)
r22520 # User maria
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
Three (again)
diff -r ... 3
--- /dev/null
+++ b/3
@@ -0,0 +1,1 @@
+3
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qnew -m
adding 4of
# HG changeset patch
# Parent
Four
diff -r ... 4of
--- /dev/null
+++ b/4of
@@ -0,0 +1,1 @@
+4 t
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 3: b9f922d0da40 Four - test
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -u
# HG changeset patch
# User jane
# Parent
Four
diff -r ... 4of
--- /dev/null
+++ b/4of
@@ -0,0 +1,1 @@
+4 t
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qnew with HG header
popping 5.patch
now at: 4.patch
now at: 5.patch
# HG changeset patch
# User johndoe
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 4: 72bc4a0467ef imported patch 5.patch - johndoe
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref
adding 5
# HG changeset patch
Mads Kiilerich
mq: refactor patchheader header ordering to match export (BC)...
r22546 # User johndoe
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
diff -r ... 5
--- /dev/null
+++ b/5
@@ -0,0 +1,1 @@
+5
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 4: ff5c06112e5a [mq]: 5.patch - johndoe
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref -U
# HG changeset patch
Mads Kiilerich
mq: refactor patchheader header ordering to match export (BC)...
r22546 # User test
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
diff -r ... 5
--- /dev/null
+++ b/5
@@ -0,0 +1,1 @@
+5
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 4: c947416c22b1 [mq]: 5.patch - test
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref -u
# HG changeset patch
Mads Kiilerich
mq: refactor patchheader header ordering to match export (BC)...
r22546 # User johndeere
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
diff -r ... 5
--- /dev/null
+++ b/5
@@ -0,0 +1,1 @@
+5
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 4: 1d898e201a22 [mq]: 5.patch - johndeere
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qnew with plain header
popping 6.patch
now at: 5.patch
now at: 6.patch
From: test
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 5: 7825a18ec839 imported patch 6.patch - test
4: 1d898e201a22 [mq]: 5.patch - johndeere
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref
adding 6
From: test
diff -r ... 6
--- /dev/null
+++ b/6
@@ -0,0 +1,1 @@
+6
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 5: 09d19592680d [mq]: 6.patch - test
4: 1d898e201a22 [mq]: 5.patch - johndeere
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref -U
From: test
diff -r ... 6
--- /dev/null
+++ b/6
@@ -0,0 +1,1 @@
+6
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 5: 09d19592680d [mq]: 6.patch - test
4: 1d898e201a22 [mq]: 5.patch - johndeere
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref -u
From: johndeere
diff -r ... 6
--- /dev/null
+++ b/6
@@ -0,0 +1,1 @@
+6
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 5: 32641ee07196 [mq]: 6.patch - johndeere
4: 1d898e201a22 [mq]: 5.patch - johndeere
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qpop -a / qpush -a
popping 6.patch
popping 5.patch
popping 4.patch
popping 3.patch
popping 2.patch
popping 1.patch
patch queue now empty
applying 1.patch
applying 2.patch
applying 3.patch
applying 4.patch
applying 5.patch
applying 6.patch
now at: 6.patch
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 5: 1fb083c80457 imported patch 6.patch - johndeere
4: 7e96e969691d imported patch 5.patch - johndeere
3: c7147533d3cd Four - jane
2: b383d04401ea Three (again) - maria
1: fac2da4efc3c imported patch 2.patch - jane
0: b6e237e8771b imported patch 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 $ rm -r sandbox
$ runtest
==== init
==== qnew -U
# HG changeset patch
Mads Kiilerich
mq: write headers for new HG patches in the same order as export (BC)
r22520 # User test
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
Mads Kiilerich
mq: correctly make an empty line after description in new patches...
r22519
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 0: a054644889e5 [mq]: 1.patch - test
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref
adding 1
# HG changeset patch
Mads Kiilerich
mq: write headers for new HG patches in the same order as export (BC)
r22520 # User test
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
diff -r ... 1
--- /dev/null
+++ b/1
@@ -0,0 +1,1 @@
+1
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 0: 2905f1e46ee0 [mq]: 1.patch - test
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -u
# HG changeset patch
Mads Kiilerich
mq: write headers for new HG patches in the same order as export (BC)
r22520 # User mary
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
diff -r ... 1
--- /dev/null
+++ b/1
@@ -0,0 +1,1 @@
+1
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qnew
adding 2
# HG changeset patch
# Parent
diff -r ... 2
--- /dev/null
+++ b/2
@@ -0,0 +1,1 @@
+2
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 1: 527f98a12a7a [mq]: 2.patch - test
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -u
# HG changeset patch
# User jane
# Parent
diff -r ... 2
--- /dev/null
+++ b/2
@@ -0,0 +1,1 @@
+2
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qnew -U -m
# HG changeset patch
Mads Kiilerich
mq: write headers for new HG patches in the same order as export (BC)
r22520 # User test
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
Three
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 2: 0ffa16a9088e Three - test
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref
adding 3
# HG changeset patch
Mads Kiilerich
mq: write headers for new HG patches in the same order as export (BC)
r22520 # User test
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
Three
diff -r ... 3
--- /dev/null
+++ b/3
@@ -0,0 +1,1 @@
+3
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 2: 83f1290c6086 Three - test
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -m
# HG changeset patch
Mads Kiilerich
mq: write headers for new HG patches in the same order as export (BC)
r22520 # User test
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
Drei
diff -r ... 3
--- /dev/null
+++ b/3
@@ -0,0 +1,1 @@
+3
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 2: b0d856328d4d Drei - test
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -u
# HG changeset patch
Mads Kiilerich
mq: write headers for new HG patches in the same order as export (BC)
r22520 # User mary
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
Drei
diff -r ... 3
--- /dev/null
+++ b/3
@@ -0,0 +1,1 @@
+3
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 2: bb9d4b28e6a6 Drei - mary
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -u -m
# HG changeset patch
Mads Kiilerich
mq: write headers for new HG patches in the same order as export (BC)
r22520 # User maria
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
Three (again)
diff -r ... 3
--- /dev/null
+++ b/3
@@ -0,0 +1,1 @@
+3
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qnew -m
adding 4of
# HG changeset patch
# Parent
Four
diff -r ... 4of
--- /dev/null
+++ b/4of
@@ -0,0 +1,1 @@
+4 t
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 3: b9f922d0da40 Four - test
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qref -u
# HG changeset patch
# User jane
# Parent
Four
diff -r ... 4of
--- /dev/null
+++ b/4of
@@ -0,0 +1,1 @@
+4 t
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qnew with HG header
popping 5.patch
now at: 4.patch
now at: 5.patch
# HG changeset patch
# User johndoe
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 4: 72bc4a0467ef imported patch 5.patch - johndoe
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref
adding 5
# HG changeset patch
Mads Kiilerich
mq: refactor patchheader header ordering to match export (BC)...
r22546 # User johndoe
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
diff -r ... 5
--- /dev/null
+++ b/5
@@ -0,0 +1,1 @@
+5
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 4: ff5c06112e5a [mq]: 5.patch - johndoe
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref -U
# HG changeset patch
Mads Kiilerich
mq: refactor patchheader header ordering to match export (BC)...
r22546 # User test
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
diff -r ... 5
--- /dev/null
+++ b/5
@@ -0,0 +1,1 @@
+5
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 4: c947416c22b1 [mq]: 5.patch - test
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref -u
# HG changeset patch
Mads Kiilerich
mq: refactor patchheader header ordering to match export (BC)...
r22546 # User johndeere
Matt Mackall
tests: unify test-mq-header-from
r12462 # Parent
diff -r ... 5
--- /dev/null
+++ b/5
@@ -0,0 +1,1 @@
+5
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 4: 1d898e201a22 [mq]: 5.patch - johndeere
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qnew with plain header
popping 6.patch
now at: 5.patch
now at: 6.patch
From: test
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 5: 7825a18ec839 imported patch 6.patch - test
4: 1d898e201a22 [mq]: 5.patch - johndeere
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref
adding 6
From: test
diff -r ... 6
--- /dev/null
+++ b/6
@@ -0,0 +1,1 @@
+6
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 5: 09d19592680d [mq]: 6.patch - test
4: 1d898e201a22 [mq]: 5.patch - johndeere
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref -U
From: test
diff -r ... 6
--- /dev/null
+++ b/6
@@ -0,0 +1,1 @@
+6
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 5: 09d19592680d [mq]: 6.patch - test
4: 1d898e201a22 [mq]: 5.patch - johndeere
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== hg qref -u
From: johndeere
diff -r ... 6
--- /dev/null
+++ b/6
@@ -0,0 +1,1 @@
+6
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 5: 32641ee07196 [mq]: 6.patch - johndeere
4: 1d898e201a22 [mq]: 5.patch - johndeere
3: 0dfb3111e7ee Four - jane
2: a6686ee84fc3 Three (again) - maria
1: a425cde5f493 [mq]: 2.patch - jane
0: 3682f830e656 [mq]: 1.patch - mary
Matt Mackall
tests: unify test-mq-header-from
r12462 ==== qpop -a / qpush -a
popping 6.patch
popping 5.patch
popping 4.patch
popping 3.patch
popping 2.patch
popping 1.patch
patch queue now empty
applying 1.patch
applying 2.patch
applying 3.patch
applying 4.patch
applying 5.patch
applying 6.patch
now at: 6.patch
Phil Cohen
tests: add commit hashes to log commands in rebase tests...
r35386 5: 1fb083c80457 imported patch 6.patch - johndeere
4: 7e96e969691d imported patch 5.patch - johndeere
3: c7147533d3cd Four - jane
2: b383d04401ea Three (again) - maria
1: fac2da4efc3c imported patch 2.patch - jane
0: b6e237e8771b imported patch 1.patch - mary
Mads Kiilerich
tests: add missing trailing 'cd ..'...
r16913
$ cd ..