Mercurial > hg
annotate tests/test-churn.t @ 24790:baa11dde8c0e
match: add a subclass for dirstate normalizing of the matched patterns
This class is only needed on case insensitive filesystems, and only
for wdir context matches. It allows the user to not match the case of
the items in the filesystem- especially for naming directories, which
dirstate doesn't handle[1]. Making dirstate handle mismatched
directory cases is too expensive[2].
Since dirstate doesn't apply to committed csets, this is only created by
overriding basectx.match() in workingctx, and only on icasefs. The default
arguments have been dropped, because the ctx must be passed to the matcher in
order to function.
For operations that can apply to both wdir and some other context, this ends up
normalizing the filename to the case as it exists in the filesystem, and using
that case for the lookup in the other context. See the diff example in the
test.
Previously, given a directory with an inexact case:
- add worked as expected
- diff, forget and status would silently ignore the request
- files would exit with 1
- commit, revert and remove would fail (even when the commands leading up to
them worked):
$ hg ci -m "AbCDef" capsdir1/capsdir
abort: CapsDir1/CapsDir: no match under directory!
$ hg revert -r '.^' capsdir1/capsdir
capsdir1\capsdir: no such file in rev 64dae27060b7
$ hg remove capsdir1/capsdir
not removing capsdir1\capsdir: no tracked files
[1]
Globs are normalized, so that the -I and -X don't need to be specified with a
case match. Without that, the second last remove (with -X) removes the files,
leaving nothing for the last remove. However, specifying the files as
'glob:**.Txt' does not work. Perhaps this requires 're.IGNORECASE'?
There are only a handful of places that create matchers directly, instead of
being routed through the context.match() method. Some may benefit from changing
over to using ctx.match() as a factory function:
revset.checkstatus()
revset.contains()
revset.filelog()
revset._matchfiles()
localrepository._loadfilter()
ignore.ignore()
fileset.subrepo()
filemerge._picktool()
overrides.addlargefiles()
lfcommands.lfconvert()
kwtemplate.__init__()
eolfile.__init__()
eolfile.checkrev()
acl.buildmatch()
Currently, a toplevel subrepo can be named with an inexact case. However, the
path auditor gets in the way of naming _anything_ in the subrepo if the top
level case doesn't match. That is trickier to handle, because there's the user
provided case, the case in the filesystem, and the case stored in .hgsub. This
can be fixed next cycle.
--- a/tests/test-subrepo-deep-nested-change.t
+++ b/tests/test-subrepo-deep-nested-change.t
@@ -170,8 +170,15 @@
R sub1/sub2/test.txt
$ hg update -Cq
$ touch sub1/sub2/folder/bar
+#if icasefs
+ $ hg addremove Sub1/sub2
+ abort: path 'Sub1\sub2' is inside nested repo 'Sub1'
+ [255]
+ $ hg -q addremove sub1/sub2
+#else
$ hg addremove sub1/sub2
adding sub1/sub2/folder/bar (glob)
+#endif
$ hg status -S
A sub1/sub2/folder/bar
? foo/bar/abc
The narrowmatcher class may need to be tweaked when that is fixed.
[1] http://www.selenic.com/pipermail/mercurial-devel/2015-April/068183.html
[2] http://www.selenic.com/pipermail/mercurial-devel/2015-April/068191.html
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sun, 12 Apr 2015 01:39:21 -0400 |
parents | 73b3218bb078 |
children | 1aee2ab0f902 |
rev | line source |
---|---|
12095
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
1 $ echo "[extensions]" >> $HGRCPATH |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
2 $ echo "churn=" >> $HGRCPATH |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
3 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
4 create test repository |
6348
f8feaa665319
Make churn an official extension
Patrick Mezard <pmezard@gmail.com>
parents:
diff
changeset
|
5 |
12095
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
6 $ hg init repo |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
7 $ cd repo |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
8 $ echo a > a |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
9 $ hg ci -Am adda -u user1 -d 6:00 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
10 adding a |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
11 $ echo b >> a |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
12 $ echo b > b |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
13 $ hg ci -m changeba -u user2 -d 9:00 a |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
14 $ hg ci -Am addb -u user2 -d 9:30 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
15 adding b |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
16 $ echo c >> a |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
17 $ echo c >> b |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
18 $ echo c > c |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
19 $ hg ci -m changeca -u user3 -d 12:00 a |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
20 $ hg ci -m changecb -u user3 -d 12:15 b |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
21 $ hg ci -Am addc -u user3 -d 12:30 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
22 adding c |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
23 $ mkdir -p d/e |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
24 $ echo abc > d/e/f1.txt |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
25 $ hg ci -Am "add d/e/f1.txt" -u user1 -d 12:45 d/e/f1.txt |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
26 $ mkdir -p d/g |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
27 $ echo def > d/g/f2.txt |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
28 $ hg ci -Am "add d/g/f2.txt" -u user1 -d 13:00 d/g/f2.txt |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
29 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
30 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
31 churn separate directories |
6348
f8feaa665319
Make churn an official extension
Patrick Mezard <pmezard@gmail.com>
parents:
diff
changeset
|
32 |
12095
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
33 $ cd d |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
34 $ hg churn e |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
35 user1 1 *************************************************************** |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
36 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
37 churn all |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
38 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
39 $ hg churn |
18369
2150e70c0ee1
churn: sort users with same churn by name
Mads Kiilerich <mads@kiilerich.com>
parents:
16913
diff
changeset
|
40 user1 3 *************************************************************** |
12095
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
41 user3 3 *************************************************************** |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
42 user2 2 ****************************************** |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
43 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
44 churn excluding one dir |
6348
f8feaa665319
Make churn an official extension
Patrick Mezard <pmezard@gmail.com>
parents:
diff
changeset
|
45 |
12095
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
46 $ hg churn -X e |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
47 user3 3 *************************************************************** |
18369
2150e70c0ee1
churn: sort users with same churn by name
Mads Kiilerich <mads@kiilerich.com>
parents:
16913
diff
changeset
|
48 user1 2 ****************************************** |
12095
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
49 user2 2 ****************************************** |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
50 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
51 churn up to rev 2 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
52 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
53 $ hg churn -r :2 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
54 user2 2 *************************************************************** |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
55 user1 1 ******************************** |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
56 $ cd .. |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
57 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
58 churn with aliases |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
59 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
60 $ cat > ../aliases <<EOF |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
61 > user1 alias1 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
62 > user3 alias3 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
63 > not-an-alias |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
64 > EOF |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
65 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
66 churn with .hgchurn |
12068
2e7647d25458
churn: do not crash on empty lines in alias file
Ronny Pfannschmidt <Ronny.Pfannschmidt@gmx.de>
parents:
11265
diff
changeset
|
67 |
12095
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
68 $ mv ../aliases .hgchurn |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
69 $ hg churn |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
70 skipping malformed alias: not-an-alias |
18369
2150e70c0ee1
churn: sort users with same churn by name
Mads Kiilerich <mads@kiilerich.com>
parents:
16913
diff
changeset
|
71 alias1 3 ************************************************************** |
12095
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
72 alias3 3 ************************************************************** |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
73 user2 2 ***************************************** |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
74 $ rm .hgchurn |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
75 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
76 churn with column specifier |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
77 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
78 $ COLUMNS=40 hg churn |
18369
2150e70c0ee1
churn: sort users with same churn by name
Mads Kiilerich <mads@kiilerich.com>
parents:
16913
diff
changeset
|
79 user1 3 *********************** |
12095
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
80 user3 3 *********************** |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
81 user2 2 *************** |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
82 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
83 churn by hour |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
84 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
85 $ hg churn -f '%H' -s |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
86 06 1 ***************** |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
87 09 2 ********************************* |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
88 12 4 ****************************************************************** |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
89 13 1 ***************** |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
90 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
91 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
92 churn with separated added/removed lines |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
93 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
94 $ hg rm d/g/f2.txt |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
95 $ hg ci -Am "removed d/g/f2.txt" -u user1 -d 14:00 d/g/f2.txt |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
96 $ hg churn --diffstat |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
97 user1 +3/-1 +++++++++++++++++++++++++++++++++++++++++-------------- |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
98 user3 +3/-0 +++++++++++++++++++++++++++++++++++++++++ |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
99 user2 +2/-0 +++++++++++++++++++++++++++ |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
100 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
101 churn --diffstat with color |
6348
f8feaa665319
Make churn an official extension
Patrick Mezard <pmezard@gmail.com>
parents:
diff
changeset
|
102 |
12095
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
103 $ hg --config extensions.color= churn --config color.mode=ansi \ |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
104 > --diffstat --color=always |
12942
05fffd665170
tests: use (esc) for all non-ASCII test output
Mads Kiilerich <mads@kiilerich.com>
parents:
12399
diff
changeset
|
105 user1 +3/-1 \x1b[0;32m+++++++++++++++++++++++++++++++++++++++++\x1b[0m\x1b[0;31m--------------\x1b[0m (esc) |
05fffd665170
tests: use (esc) for all non-ASCII test output
Mads Kiilerich <mads@kiilerich.com>
parents:
12399
diff
changeset
|
106 user3 +3/-0 \x1b[0;32m+++++++++++++++++++++++++++++++++++++++++\x1b[0m (esc) |
05fffd665170
tests: use (esc) for all non-ASCII test output
Mads Kiilerich <mads@kiilerich.com>
parents:
12399
diff
changeset
|
107 user2 +2/-0 \x1b[0;32m+++++++++++++++++++++++++++\x1b[0m (esc) |
12095
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
108 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
109 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
110 changeset number churn |
9669
9b127e888640
churn: ability to display added/removed lines separately
Alexander Solovyov <piranha@piranha.org.ua>
parents:
9389
diff
changeset
|
111 |
12095
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
112 $ hg churn -c |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
113 user1 4 *************************************************************** |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
114 user3 3 *********************************************** |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
115 user2 2 ******************************** |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
116 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
117 $ echo 'with space = no-space' >> ../aliases |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
118 $ echo a >> a |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
119 $ hg commit -m a -u 'with space' -d 15:00 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
120 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
121 churn with space in alias |
9670
7d56b6ffef72
churn: fix changeset count (broken by 9b127e888640)
Alexander Solovyov <piranha@piranha.org.ua>
parents:
9669
diff
changeset
|
122 |
12095
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
123 $ hg churn --aliases ../aliases -r tip |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
124 no-space 1 ************************************************************ |
11264
30c620e48d1c
churn: support spaces in aliases (issue2222)
Alexander Solovyov <piranha@piranha.org.ua>
parents:
11141
diff
changeset
|
125 |
12095
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
126 $ cd .. |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
127 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
128 |
12399
4fee1fd3de9a
tests: added a short description to issue numbers
Martin Geisler <mg@aragost.com>
parents:
12095
diff
changeset
|
129 Issue833: ZeroDivisionError |
9388
f7968bba2307
churn: issue833 was reintroduced in 9bc46d069a76, correct it and add a test
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
8254
diff
changeset
|
130 |
12095
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
131 $ hg init issue-833 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
132 $ cd issue-833 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
133 $ touch foo |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
134 $ hg ci -Am foo |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
135 adding foo |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
136 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
137 this was failing with a ZeroDivisionError |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
138 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
139 $ hg churn |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
140 test 0 |
80b0865b3fa5
tests: unify test-churn
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12069
diff
changeset
|
141 $ cd .. |
13123
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
142 |
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
143 Ignore trailing or leading spaces in emails |
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
144 |
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
145 $ cd repo |
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
146 $ touch bar |
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
147 $ hg ci -Am'bar' -u 'user4 <user4@x.com>' |
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
148 adding bar |
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
149 $ touch foo |
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
150 $ hg ci -Am'foo' -u 'user4 < user4@x.com >' |
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
151 adding foo |
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
152 $ hg log -l2 --template '[{author|email}]\n' |
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
153 [ user4@x.com ] |
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
154 [user4@x.com] |
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
155 $ hg churn -c |
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
156 user1 4 ********************************************************* |
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
157 user3 3 ******************************************* |
18369
2150e70c0ee1
churn: sort users with same churn by name
Mads Kiilerich <mads@kiilerich.com>
parents:
16913
diff
changeset
|
158 user2 2 ***************************** |
13123
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
159 user4@x.com 2 ***************************** |
2506658c3927
churn: ignore trailing and leading spaces (issue2546)
Nicolas Dumazet <nicdumz.commits@gmail.com>
parents:
12942
diff
changeset
|
160 with space 1 ************** |
16913
f2719b387380
tests: add missing trailing 'cd ..'
Mads Kiilerich <mads@kiilerich.com>
parents:
13123
diff
changeset
|
161 |
21163
9846b40d01e7
churn: compute padding with unicode strings
Isaac Jurado <diptongo@gmail.com>
parents:
18369
diff
changeset
|
162 Test multibyte sequences in names |
9846b40d01e7
churn: compute padding with unicode strings
Isaac Jurado <diptongo@gmail.com>
parents:
18369
diff
changeset
|
163 |
9846b40d01e7
churn: compute padding with unicode strings
Isaac Jurado <diptongo@gmail.com>
parents:
18369
diff
changeset
|
164 $ echo bar >> bar |
9846b40d01e7
churn: compute padding with unicode strings
Isaac Jurado <diptongo@gmail.com>
parents:
18369
diff
changeset
|
165 $ hg --encoding utf-8 ci -m'changed bar' -u 'El NiƱo <nino@x.com>' |
9846b40d01e7
churn: compute padding with unicode strings
Isaac Jurado <diptongo@gmail.com>
parents:
18369
diff
changeset
|
166 $ hg --encoding utf-8 churn -ct '{author|person}' |
9846b40d01e7
churn: compute padding with unicode strings
Isaac Jurado <diptongo@gmail.com>
parents:
18369
diff
changeset
|
167 user1 4 ********************************************************** |
9846b40d01e7
churn: compute padding with unicode strings
Isaac Jurado <diptongo@gmail.com>
parents:
18369
diff
changeset
|
168 user3 3 ******************************************** |
9846b40d01e7
churn: compute padding with unicode strings
Isaac Jurado <diptongo@gmail.com>
parents:
18369
diff
changeset
|
169 user2 2 ***************************** |
9846b40d01e7
churn: compute padding with unicode strings
Isaac Jurado <diptongo@gmail.com>
parents:
18369
diff
changeset
|
170 user4 2 ***************************** |
9846b40d01e7
churn: compute padding with unicode strings
Isaac Jurado <diptongo@gmail.com>
parents:
18369
diff
changeset
|
171 El Ni\xc3\xb1o 1 *************** (esc) |
9846b40d01e7
churn: compute padding with unicode strings
Isaac Jurado <diptongo@gmail.com>
parents:
18369
diff
changeset
|
172 with space 1 *************** |
9846b40d01e7
churn: compute padding with unicode strings
Isaac Jurado <diptongo@gmail.com>
parents:
18369
diff
changeset
|
173 |
24139
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
174 Test --template argument, with backwards compatiblity |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
175 |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
176 $ hg churn -t '{author|user}' |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
177 user1 4 *************************************************************** |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
178 user3 3 *********************************************** |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
179 user2 2 ******************************** |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
180 nino 1 **************** |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
181 with 1 **************** |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
182 0 |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
183 user4 0 |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
184 $ hg churn -T '{author|user}' |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
185 user1 4 *************************************************************** |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
186 user3 3 *********************************************** |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
187 user2 2 ******************************** |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
188 nino 1 **************** |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
189 with 1 **************** |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
190 0 |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
191 user4 0 |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
192 $ hg churn -t 'alltogether' |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
193 alltogether 11 ********************************************************* |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
194 $ hg churn -T 'alltogether' |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
195 alltogether 11 ********************************************************* |
73b3218bb078
churn: deprecate -t option in favour of -T
Jordi Gutiérrez Hermoso <jordigh@octave.org>
parents:
21163
diff
changeset
|
196 |
16913
f2719b387380
tests: add missing trailing 'cd ..'
Mads Kiilerich <mads@kiilerich.com>
parents:
13123
diff
changeset
|
197 $ cd .. |