Mercurial > public > mercurial-scm > hg-stable
annotate tests/test-ssh.t @ 13405:682edefe7dbb
tests: use printenv.py where it is - don't copy it around
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Tue, 15 Feb 2011 02:17:43 +0100 |
parents | d4ab9486e514 |
children | da0ddd62b9d8 |
rev | line source |
---|---|
1110 | 1 |
4291
35b2e02367a5
test-ssh: use printenv.py
Alexis S. L. Carvalho <alexis@cecm.usp.br>
parents:
3853
diff
changeset
|
2 |
12414 | 3 This test tries to exercise the ssh functionality with a dummy script |
1110 | 4 |
12414 | 5 $ cat <<EOF > dummyssh |
6 > import sys | |
7 > import os | |
12489 | 8 > |
12414 | 9 > os.chdir(os.path.dirname(sys.argv[0])) |
10 > if sys.argv[1] != "user@dummy": | |
11 > sys.exit(-1) | |
12489 | 12 > |
12414 | 13 > if not os.path.exists("dummyssh"): |
14 > sys.exit(-1) | |
12489 | 15 > |
12414 | 16 > os.environ["SSH_CLIENT"] = "127.0.0.1 1 2" |
12489 | 17 > |
12414 | 18 > log = open("dummylog", "ab") |
19 > log.write("Got arguments") | |
20 > for i, arg in enumerate(sys.argv[1:]): | |
21 > log.write(" %d:%s" % (i+1, arg)) | |
22 > log.write("\n") | |
23 > log.close() | |
24 > r = os.system(sys.argv[2]) | |
25 > sys.exit(bool(r)) | |
26 > EOF | |
27 $ cat <<EOF > badhook | |
28 > import sys | |
29 > sys.stdout.write("KABOOM\n") | |
30 > EOF | |
1110 | 31 |
12489 | 32 creating 'remote |
4298
58517f6eb1ad
test-ssh: avoid a shell script
Alexis S. L. Carvalho <alexis@cecm.usp.br>
parents:
4291
diff
changeset
|
33 |
12414 | 34 $ hg init remote |
35 $ cd remote | |
36 $ echo this > foo | |
37 $ echo this > fooO | |
38 $ hg ci -A -m "init" foo fooO | |
12969
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
39 $ echo <<EOF > .hg/hgrc |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
40 > [server] |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
41 > uncompressed = True |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
42 > |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
43 > [extensions] |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
44 > bookmarks = |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
45 > |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
46 > [hooks] |
13405
682edefe7dbb
tests: use printenv.py where it is - don't copy it around
Mads Kiilerich <mads@kiilerich.com>
parents:
13368
diff
changeset
|
47 > changegroup = python "$TESTDIR"/printenv.py changegroup-in-remote 0 ../dummylog |
12969
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
48 > EOF |
12414 | 49 $ cd .. |
1110 | 50 |
12414 | 51 repo not found error |
52 | |
53 $ hg clone -e "python ./dummyssh" ssh://user@dummy/nonexistent local | |
54 remote: abort: There is no Mercurial repository here (.hg not found)! | |
55 abort: no suitable response from remote hg! | |
56 [255] | |
57 | |
58 non-existent absolute path | |
1110 | 59 |
12642
bb35840e965c
tests: remove the last traces of $HGTMP
Mads Kiilerich <mads@kiilerich.com>
parents:
12640
diff
changeset
|
60 $ hg clone -e "python ./dummyssh" ssh://user@dummy//`pwd`/nonexistent local |
12414 | 61 remote: abort: There is no Mercurial repository here (.hg not found)! |
62 abort: no suitable response from remote hg! | |
63 [255] | |
64 | |
65 clone remote via stream | |
1110 | 66 |
12489 | 67 $ hg clone -e "python ./dummyssh" --uncompressed ssh://user@dummy/remote local-stream |
12414 | 68 streaming all changes |
12489 | 69 4 files to transfer, 392 bytes of data |
12773
98aaf58a1d7c
test-ssh: handle very slow ssh transfer rate
timeless <timeless@gmail.com>
parents:
12642
diff
changeset
|
70 transferred 392 bytes in * seconds (*/sec) (glob) |
12414 | 71 updating to branch default |
12489 | 72 2 files updated, 0 files merged, 0 files removed, 0 files unresolved |
12414 | 73 $ cd local-stream |
74 $ hg verify | |
75 checking changesets | |
76 checking manifests | |
77 crosschecking files in changesets and manifests | |
78 checking files | |
79 2 files, 1 changesets, 2 total revisions | |
80 $ cd .. | |
81 | |
82 clone remote via pull | |
5978
7939c71f3132
sshrepo: be more careful while reading data
Alexis S. L. Carvalho <alexis@cecm.usp.br>
parents:
4298
diff
changeset
|
83 |
12414 | 84 $ hg clone -e "python ./dummyssh" ssh://user@dummy/remote local |
85 requesting all changes | |
86 adding changesets | |
87 adding manifests | |
88 adding file changes | |
89 added 1 changesets with 2 changes to 2 files | |
90 updating to branch default | |
91 2 files updated, 0 files merged, 0 files removed, 0 files unresolved | |
92 | |
93 verify | |
1110 | 94 |
12414 | 95 $ cd local |
96 $ hg verify | |
97 checking changesets | |
98 checking manifests | |
99 crosschecking files in changesets and manifests | |
100 checking files | |
101 2 files, 1 changesets, 2 total revisions | |
102 $ echo '[hooks]' >> .hg/hgrc | |
13405
682edefe7dbb
tests: use printenv.py where it is - don't copy it around
Mads Kiilerich <mads@kiilerich.com>
parents:
13368
diff
changeset
|
103 $ echo 'changegroup = python "$TESTDIR"/printenv.py changegroup-in-local 0 ../dummylog' >> .hg/hgrc |
1110 | 104 |
12414 | 105 empty default pull |
3275
7ae37d99d47e
ssh: make the error message more clear, add a testcase
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
3095
diff
changeset
|
106 |
12414 | 107 $ hg paths |
108 default = ssh://user@dummy/remote | |
109 $ hg pull -e "python ../dummyssh" | |
110 pulling from ssh://user@dummy/remote | |
111 searching for changes | |
112 no changes found | |
113 | |
114 local change | |
12409
0eaf7d32a5d8
test-ssh: test absolute paths in SSH URLs
Brodie Rao <brodie@bitheap.org>
parents:
12156
diff
changeset
|
115 |
12414 | 116 $ echo bleah > foo |
117 $ hg ci -m "add" | |
118 | |
119 updating rc | |
120 | |
121 $ echo "default-push = ssh://user@dummy/remote" >> .hg/hgrc | |
122 $ echo "[ui]" >> .hg/hgrc | |
123 $ echo "ssh = python ../dummyssh" >> .hg/hgrc | |
12969
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
124 $ echo '[extensions]' >> .hg/hgrc |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
125 $ echo 'bookmarks =' >> .hg/hgrc |
12414 | 126 |
127 find outgoing | |
2612
ffb895f16925
add support for streaming clone.
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2439
diff
changeset
|
128 |
12414 | 129 $ hg out ssh://user@dummy/remote |
130 comparing with ssh://user@dummy/remote | |
131 searching for changes | |
132 changeset: 1:a28a9d1a809c | |
133 tag: tip | |
134 user: test | |
135 date: Thu Jan 01 00:00:00 1970 +0000 | |
136 summary: add | |
137 | |
1110 | 138 |
12414 | 139 find incoming on the remote side |
1110 | 140 |
12414 | 141 $ hg incoming -R ../remote -e "python ../dummyssh" ssh://user@dummy/local |
142 comparing with ssh://user@dummy/local | |
143 searching for changes | |
144 changeset: 1:a28a9d1a809c | |
145 tag: tip | |
146 user: test | |
147 date: Thu Jan 01 00:00:00 1970 +0000 | |
148 summary: add | |
149 | |
1110 | 150 |
12504
f7dd8bffe18c
test-ssh: test absolute path that exists
Brodie Rao <brodie@bitheap.org>
parents:
12489
diff
changeset
|
151 find incoming on the remote side (using absolute path) |
f7dd8bffe18c
test-ssh: test absolute path that exists
Brodie Rao <brodie@bitheap.org>
parents:
12489
diff
changeset
|
152 |
f7dd8bffe18c
test-ssh: test absolute path that exists
Brodie Rao <brodie@bitheap.org>
parents:
12489
diff
changeset
|
153 $ hg incoming -R ../remote -e "python ../dummyssh" "ssh://user@dummy/`pwd`" |
12640
6cc4b14fb76b
tests: remove redundant globs
Mads Kiilerich <mads@kiilerich.com>
parents:
12587
diff
changeset
|
154 comparing with ssh://user@dummy/$TESTTMP/local |
12504
f7dd8bffe18c
test-ssh: test absolute path that exists
Brodie Rao <brodie@bitheap.org>
parents:
12489
diff
changeset
|
155 searching for changes |
f7dd8bffe18c
test-ssh: test absolute path that exists
Brodie Rao <brodie@bitheap.org>
parents:
12489
diff
changeset
|
156 changeset: 1:a28a9d1a809c |
f7dd8bffe18c
test-ssh: test absolute path that exists
Brodie Rao <brodie@bitheap.org>
parents:
12489
diff
changeset
|
157 tag: tip |
f7dd8bffe18c
test-ssh: test absolute path that exists
Brodie Rao <brodie@bitheap.org>
parents:
12489
diff
changeset
|
158 user: test |
f7dd8bffe18c
test-ssh: test absolute path that exists
Brodie Rao <brodie@bitheap.org>
parents:
12489
diff
changeset
|
159 date: Thu Jan 01 00:00:00 1970 +0000 |
f7dd8bffe18c
test-ssh: test absolute path that exists
Brodie Rao <brodie@bitheap.org>
parents:
12489
diff
changeset
|
160 summary: add |
f7dd8bffe18c
test-ssh: test absolute path that exists
Brodie Rao <brodie@bitheap.org>
parents:
12489
diff
changeset
|
161 |
f7dd8bffe18c
test-ssh: test absolute path that exists
Brodie Rao <brodie@bitheap.org>
parents:
12489
diff
changeset
|
162 |
12414 | 163 push |
1110 | 164 |
12414 | 165 $ hg push |
166 pushing to ssh://user@dummy/remote | |
167 searching for changes | |
168 remote: adding changesets | |
169 remote: adding manifests | |
170 remote: adding file changes | |
171 remote: added 1 changesets with 1 changes to 1 files | |
172 $ cd ../remote | |
173 | |
174 check remote tip | |
1110 | 175 |
12414 | 176 $ hg tip |
177 changeset: 1:a28a9d1a809c | |
178 tag: tip | |
179 user: test | |
180 date: Thu Jan 01 00:00:00 1970 +0000 | |
181 summary: add | |
182 | |
183 $ hg verify | |
184 checking changesets | |
185 checking manifests | |
186 crosschecking files in changesets and manifests | |
187 checking files | |
188 2 files, 2 changesets, 3 total revisions | |
189 $ hg cat -r tip foo | |
190 bleah | |
191 $ echo z > z | |
192 $ hg ci -A -m z z | |
193 created new head | |
1982
70ba0c86da8b
Added test for incoming via ssh.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1933
diff
changeset
|
194 |
12969
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
195 test pushkeys and bookmarks |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
196 |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
197 $ cd ../local |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
198 $ echo '[extensions]' >> ../remote/.hg/hgrc |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
199 $ echo 'bookmarks =' >> ../remote/.hg/hgrc |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
200 $ hg debugpushkey --config ui.ssh="python ../dummyssh" ssh://user@dummy/remote namespaces |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
201 bookmarks |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
202 namespaces |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
203 $ hg book foo -r 0 |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
204 $ hg out -B |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
205 comparing with ssh://user@dummy/remote |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
206 searching for changed bookmarks |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
207 foo 1160648e36ce |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
208 $ hg push -B foo |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
209 pushing to ssh://user@dummy/remote |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
210 searching for changes |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
211 no changes found |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
212 exporting bookmark foo |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
213 $ hg debugpushkey --config ui.ssh="python ../dummyssh" ssh://user@dummy/remote bookmarks |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
214 foo 1160648e36cec0054048a7edc4110c6f84fde594 |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
215 $ hg book -f foo |
13050 | 216 $ hg push --traceback |
12969
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
217 pushing to ssh://user@dummy/remote |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
218 searching for changes |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
219 no changes found |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
220 updating bookmark foo |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
221 $ hg book -d foo |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
222 $ hg in -B |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
223 comparing with ssh://user@dummy/remote |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
224 searching for changed bookmarks |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
225 foo a28a9d1a809c |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
226 $ hg book -f -r 0 foo |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
227 $ hg pull -B foo |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
228 pulling from ssh://user@dummy/remote |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
229 searching for changes |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
230 no changes found |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
231 updating bookmark foo |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
232 importing bookmark foo |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
233 $ hg book -d foo |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
234 $ hg push -B foo |
13368
d4ab9486e514
bookmarks: move push/pull command features to core
Matt Mackall <mpm@selenic.com>
parents:
13050
diff
changeset
|
235 pushing to ssh://user@dummy/remote |
d4ab9486e514
bookmarks: move push/pull command features to core
Matt Mackall <mpm@selenic.com>
parents:
13050
diff
changeset
|
236 searching for changes |
d4ab9486e514
bookmarks: move push/pull command features to core
Matt Mackall <mpm@selenic.com>
parents:
13050
diff
changeset
|
237 no changes found |
12969
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
238 deleting remote bookmark foo |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
239 |
12414 | 240 a bad, evil hook that prints to stdout |
1110 | 241 |
12969
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
242 $ echo '[hooks]' >> ../remote/.hg/hgrc |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
243 $ echo 'changegroup.stdout = python ../badhook' >> ../remote/.hg/hgrc |
12414 | 244 $ echo r > r |
245 $ hg ci -A -m z r | |
246 | |
247 push should succeed even though it has an unexpected response | |
1110 | 248 |
12414 | 249 $ hg push |
250 pushing to ssh://user@dummy/remote | |
251 searching for changes | |
252 note: unsynced remote changes! | |
253 remote: adding changesets | |
254 remote: adding manifests | |
255 remote: adding file changes | |
256 remote: added 1 changesets with 1 changes to 1 files | |
257 remote: KABOOM | |
258 $ hg -R ../remote heads | |
259 changeset: 3:1383141674ec | |
260 tag: tip | |
261 parent: 1:a28a9d1a809c | |
262 user: test | |
263 date: Thu Jan 01 00:00:00 1970 +0000 | |
264 summary: z | |
265 | |
266 changeset: 2:6c0482d977a3 | |
267 parent: 0:1160648e36ce | |
268 user: test | |
269 date: Thu Jan 01 00:00:00 1970 +0000 | |
270 summary: z | |
271 | |
272 $ cd .. | |
273 $ cat dummylog | |
274 Got arguments 1:user@dummy 2:hg -R nonexistent serve --stdio | |
12640
6cc4b14fb76b
tests: remove redundant globs
Mads Kiilerich <mads@kiilerich.com>
parents:
12587
diff
changeset
|
275 Got arguments 1:user@dummy 2:hg -R /$TESTTMP/nonexistent serve --stdio |
12414 | 276 Got arguments 1:user@dummy 2:hg -R remote serve --stdio |
277 Got arguments 1:user@dummy 2:hg -R remote serve --stdio | |
278 Got arguments 1:user@dummy 2:hg -R remote serve --stdio | |
279 Got arguments 1:user@dummy 2:hg -R remote serve --stdio | |
280 Got arguments 1:user@dummy 2:hg -R local serve --stdio | |
12640
6cc4b14fb76b
tests: remove redundant globs
Mads Kiilerich <mads@kiilerich.com>
parents:
12587
diff
changeset
|
281 Got arguments 1:user@dummy 2:hg -R $TESTTMP/local serve --stdio |
12414 | 282 Got arguments 1:user@dummy 2:hg -R remote serve --stdio |
12969
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
283 Got arguments 1:user@dummy 2:hg -R remote serve --stdio |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
284 Got arguments 1:user@dummy 2:hg -R remote serve --stdio |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
285 Got arguments 1:user@dummy 2:hg -R remote serve --stdio |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
286 Got arguments 1:user@dummy 2:hg -R remote serve --stdio |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
287 Got arguments 1:user@dummy 2:hg -R remote serve --stdio |
12414 | 288 Got arguments 1:user@dummy 2:hg -R remote serve --stdio |
12969
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
289 Got arguments 1:user@dummy 2:hg -R remote serve --stdio |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
290 Got arguments 1:user@dummy 2:hg -R remote serve --stdio |
6bd9778ae749
pushkey: force HTTP POST on push and add tests (issue2489)
Matt Mackall <mpm@selenic.com>
parents:
12773
diff
changeset
|
291 Got arguments 1:user@dummy 2:hg -R remote serve --stdio |