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