Mercurial > hgsubversion
annotate tests/fixtures/move_into_trunk.svndump @ 889:7a98fbadcae9
revsets: huge speedups for fromsvn and svnrev
I have a hgsubversion repo that contains over 300,000 commits.
In that repo, this patch improves performance as follows:
hg --time log -r 'first(fromsvn())'
Before: 40.3 sec
After: 0.8 sec
hg --time log -r 'svnrev(350000)'
Before: 40.3 sec
After: 0.1 sec
Note: the performance of these revset implementations is very sensitive
to doing as little work as possible per line of the rev_map file.
I originally attempted to hide the file format details by hoisting the
parsing of each line up into RevMap.readmapfile, but the current less
abstract code is dramatically (10x or more) faster.
If the revmap file is missing, we error out and print a message
describing what to do.
author | Bryan O'Sullivan <bryano@fb.com> |
---|---|
date | Sat, 12 May 2012 05:38:34 -0700 |
parents | 1086bd6f6aa4 |
children |
rev | line source |
---|---|
663
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
1 SVN-fs-dump-format-version: 2 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
2 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
3 UUID: 124c25c6-3b41-4c6b-a3a3-a0c9809dc9cb |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
4 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
5 Revision-number: 0 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
6 Prop-content-length: 56 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
7 Content-length: 56 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
8 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
9 K 8 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
10 svn:date |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
11 V 27 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
12 2010-08-14T19:08:00.090868Z |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
13 PROPS-END |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
14 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
15 Revision-number: 1 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
16 Prop-content-length: 111 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
17 Content-length: 111 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
18 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
19 K 7 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
20 svn:log |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
21 V 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
22 Add files. |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
23 K 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
24 svn:author |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
25 V 9 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
26 anonymous |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
27 K 8 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
28 svn:date |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
29 V 27 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
30 2010-08-14T19:09:04.290181Z |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
31 PROPS-END |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
32 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
33 Node-path: A |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
34 Node-kind: file |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
35 Node-action: add |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
36 Prop-content-length: 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
37 Text-content-length: 16 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
38 Text-content-md5: 98475036dc73d318982805bf4b16e8b2 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
39 Text-content-sha1: d7dff2b1ef48b9c20c23d7b3a08b557957cec3c9 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
40 Content-length: 26 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
41 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
42 PROPS-END |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
43 This is a file. |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
44 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
45 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
46 Node-path: B |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
47 Node-kind: file |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
48 Node-action: add |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
49 Prop-content-length: 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
50 Text-content-length: 22 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
51 Text-content-md5: d54ff73404ed6041a3bd66850b061bff |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
52 Text-content-sha1: 4bdb40dfd6ec75cb730e678b5d7786e30170c5fb |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
53 Content-length: 32 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
54 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
55 PROPS-END |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
56 This is another file. |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
57 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
58 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
59 Revision-number: 2 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
60 Prop-content-length: 111 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
61 Content-length: 111 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
62 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
63 K 7 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
64 svn:log |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
65 V 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
66 Add trunk. |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
67 K 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
68 svn:author |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
69 V 9 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
70 anonymous |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
71 K 8 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
72 svn:date |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
73 V 27 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
74 2010-08-14T19:09:23.652445Z |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
75 PROPS-END |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
76 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
77 Node-path: trunk |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
78 Node-kind: dir |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
79 Node-action: add |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
80 Prop-content-length: 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
81 Content-length: 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
82 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
83 PROPS-END |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
84 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
85 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
86 Revision-number: 3 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
87 Prop-content-length: 113 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
88 Content-length: 113 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
89 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
90 K 7 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
91 svn:log |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
92 V 12 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
93 Move a file. |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
94 K 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
95 svn:author |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
96 V 9 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
97 anonymous |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
98 K 8 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
99 svn:date |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
100 V 27 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
101 2010-08-14T19:09:33.945291Z |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
102 PROPS-END |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
103 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
104 Node-path: trunk/A |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
105 Node-kind: file |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
106 Node-action: add |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
107 Node-copyfrom-rev: 1 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
108 Node-copyfrom-path: A |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
109 Text-copy-source-md5: 98475036dc73d318982805bf4b16e8b2 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
110 Text-copy-source-sha1: d7dff2b1ef48b9c20c23d7b3a08b557957cec3c9 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
111 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
112 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
113 Node-path: A |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
114 Node-action: delete |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
115 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
116 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
117 Revision-number: 4 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
118 Prop-content-length: 122 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
119 Content-length: 122 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
120 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
121 K 7 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
122 svn:log |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
123 V 18 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
124 Move another file. |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
125 K 10 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
126 svn:author |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
127 V 9 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
128 anonymous |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
129 K 8 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
130 svn:date |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
131 V 27 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
132 2010-08-14T19:10:03.135714Z |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
133 PROPS-END |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
134 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
135 Node-path: trunk/B |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
136 Node-kind: file |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
137 Node-action: add |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
138 Node-copyfrom-rev: 3 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
139 Node-copyfrom-path: B |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
140 Text-copy-source-md5: d54ff73404ed6041a3bd66850b061bff |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
141 Text-copy-source-sha1: 4bdb40dfd6ec75cb730e678b5d7786e30170c5fb |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
142 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
143 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
144 Node-path: B |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
145 Node-action: delete |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
146 |
1086bd6f6aa4
tests: add a fixture that exercises the fix made in 1add57910c82.
Dan Villiom Podlaski Christiansen <danchr@gmail.com>
parents:
diff
changeset
|
147 |