Show More
@@ -1818,7 +1818,6 b' class localrepository(object):' | |||
|
1818 | 1818 | args = tr.hookargs.copy() |
|
1819 | 1819 | args.update(bookmarks.preparehookargs(name, old, new)) |
|
1820 | 1820 | repo.hook('pretxnclose-bookmark', throw=True, |
|
1821 | txnname=desc, | |
|
1822 | 1821 | **pycompat.strkwargs(args)) |
|
1823 | 1822 | if hook.hashook(repo.ui, 'pretxnclose-phase'): |
|
1824 | 1823 | cl = repo.unfiltered().changelog |
@@ -1826,11 +1825,11 b' class localrepository(object):' | |||
|
1826 | 1825 | args = tr.hookargs.copy() |
|
1827 | 1826 | node = hex(cl.node(rev)) |
|
1828 | 1827 | args.update(phases.preparehookargs(node, old, new)) |
|
1829 |
repo.hook('pretxnclose-phase', throw=True, |
|
|
1828 | repo.hook('pretxnclose-phase', throw=True, | |
|
1830 | 1829 | **pycompat.strkwargs(args)) |
|
1831 | 1830 | |
|
1832 | 1831 | repo.hook('pretxnclose', throw=True, |
|
1833 |
|
|
|
1832 | **pycompat.strkwargs(tr.hookargs)) | |
|
1834 | 1833 | def releasefn(tr, success): |
|
1835 | 1834 | repo = reporef() |
|
1836 | 1835 | if success: |
@@ -1864,6 +1863,7 b' class localrepository(object):' | |||
|
1864 | 1863 | tr.changes['bookmarks'] = {} |
|
1865 | 1864 | |
|
1866 | 1865 | tr.hookargs['txnid'] = txnid |
|
1866 | tr.hookargs['txnname'] = desc | |
|
1867 | 1867 | # note: writing the fncache only during finalize mean that the file is |
|
1868 | 1868 | # outdated when running hooks. As fncache is used for streaming clone, |
|
1869 | 1869 | # this is not expected to break anything that happen during the hooks. |
@@ -1885,7 +1885,7 b' class localrepository(object):' | |||
|
1885 | 1885 | args = tr.hookargs.copy() |
|
1886 | 1886 | args.update(bookmarks.preparehookargs(name, old, new)) |
|
1887 | 1887 | repo.hook('txnclose-bookmark', throw=False, |
|
1888 |
|
|
|
1888 | **pycompat.strkwargs(args)) | |
|
1889 | 1889 | |
|
1890 | 1890 | if hook.hashook(repo.ui, 'txnclose-phase'): |
|
1891 | 1891 | cl = repo.unfiltered().changelog |
@@ -1894,10 +1894,10 b' class localrepository(object):' | |||
|
1894 | 1894 | args = tr.hookargs.copy() |
|
1895 | 1895 | node = hex(cl.node(rev)) |
|
1896 | 1896 | args.update(phases.preparehookargs(node, old, new)) |
|
1897 |
repo.hook('txnclose-phase', throw=False, |
|
|
1897 | repo.hook('txnclose-phase', throw=False, | |
|
1898 | 1898 | **pycompat.strkwargs(args)) |
|
1899 | 1899 | |
|
1900 |
repo.hook('txnclose', throw=False, |
|
|
1900 | repo.hook('txnclose', throw=False, | |
|
1901 | 1901 | **pycompat.strkwargs(hookargs)) |
|
1902 | 1902 | reporef()._afterlock(hookfunc) |
|
1903 | 1903 | tr.addfinalize('txnclose-hook', txnclosehook) |
@@ -1909,7 +1909,7 b' class localrepository(object):' | |||
|
1909 | 1909 | def txnaborthook(tr2): |
|
1910 | 1910 | """To be run if transaction is aborted |
|
1911 | 1911 | """ |
|
1912 |
reporef().hook('txnabort', throw=False, |
|
|
1912 | reporef().hook('txnabort', throw=False, | |
|
1913 | 1913 | **pycompat.strkwargs(tr2.hookargs)) |
|
1914 | 1914 | tr.addabort('txnabort-hook', txnaborthook) |
|
1915 | 1915 | # avoid eager cache invalidation. in-memory data should be identical |
@@ -240,6 +240,8 b' hg -R bundle://../full.hg verify' | |||
|
240 | 240 | HG_NODE_LAST=aa35859c02ea8bd48da5da68cd2740ac71afcbaf |
|
241 | 241 | HG_SOURCE=pull |
|
242 | 242 | HG_TXNID=TXN:$ID$ |
|
243 | HG_TXNNAME=pull | |
|
244 | bundle:../full.hg | |
|
243 | 245 | HG_URL=bundle:../full.hg (no-msys !) |
|
244 | 246 | HG_URL=bundle;../full.hg (msys !) |
|
245 | 247 | |
@@ -272,6 +274,8 b' Pull full.hg into empty again (using -R;' | |||
|
272 | 274 | HG_NODE_LAST=aa35859c02ea8bd48da5da68cd2740ac71afcbaf |
|
273 | 275 | HG_SOURCE=pull |
|
274 | 276 | HG_TXNID=TXN:$ID$ |
|
277 | HG_TXNNAME=pull | |
|
278 | bundle:empty+full.hg | |
|
275 | 279 | HG_URL=bundle:empty+full.hg |
|
276 | 280 | |
|
277 | 281 | (run 'hg heads' to see heads, 'hg merge' to merge) |
@@ -88,6 +88,8 b' Pull the new commits in the clone' | |||
|
88 | 88 | HG_PENDING=$TESTTMP/clone |
|
89 | 89 | HG_SOURCE=pull |
|
90 | 90 | HG_TXNID=TXN:$ID$ |
|
91 | HG_TXNNAME=pull | |
|
92 | file:/*/$TESTTMP/repo (glob) | |
|
91 | 93 | HG_URL=file:$TESTTMP/repo |
|
92 | 94 |
|
|
93 | 95 | remote: changegroup2 |
@@ -103,6 +105,8 b' Pull the new commits in the clone' | |||
|
103 | 105 | HG_PHASES_MOVED=1 |
|
104 | 106 | HG_SOURCE=pull |
|
105 | 107 | HG_TXNID=TXN:$ID$ |
|
108 | HG_TXNNAME=pull | |
|
109 | file:/*/$TESTTMP/repo (glob) | |
|
106 | 110 |
|
|
107 | 111 | |
|
108 | 112 | new changesets 27547f69f254:f838bfaca5c7 |
@@ -112,6 +116,8 b' Pull the new commits in the clone' | |||
|
112 | 116 | HG_NODE_LAST=27547f69f25460a52fff66ad004e58da7ad3fb56 |
|
113 | 117 | HG_SOURCE=pull |
|
114 | 118 | HG_TXNID=TXN:$ID$ |
|
119 | HG_TXNNAME=pull | |
|
120 | file:/*/$TESTTMP/repo (glob) | |
|
115 | 121 | HG_URL=file:$TESTTMP/repo |
|
116 | 122 |
|
|
117 | 123 | incoming hook: HG_HOOKNAME=incoming |
@@ -119,6 +125,8 b' Pull the new commits in the clone' | |||
|
119 | 125 | HG_NODE=27547f69f25460a52fff66ad004e58da7ad3fb56 |
|
120 | 126 | HG_SOURCE=pull |
|
121 | 127 | HG_TXNID=TXN:$ID$ |
|
128 | HG_TXNNAME=pull | |
|
129 | file:/*/$TESTTMP/repo (glob) | |
|
122 | 130 |
|
|
123 | 131 | |
|
124 | 132 | changegroup hook: HG_HOOKNAME=changegroup |
@@ -128,6 +136,8 b' Pull the new commits in the clone' | |||
|
128 | 136 | HG_PHASES_MOVED=1 |
|
129 | 137 | HG_SOURCE=pull |
|
130 | 138 | HG_TXNID=TXN:$ID$ |
|
139 | HG_TXNNAME=pull | |
|
140 | file:/*/$TESTTMP/repo (glob) | |
|
131 | 141 | HG_URL=file:$TESTTMP/repo |
|
132 | 142 |
|
|
133 | 143 | incoming hook: HG_HOOKNAME=incoming |
@@ -136,6 +146,8 b' Pull the new commits in the clone' | |||
|
136 | 146 | HG_PHASES_MOVED=1 |
|
137 | 147 | HG_SOURCE=pull |
|
138 | 148 | HG_TXNID=TXN:$ID$ |
|
149 | HG_TXNNAME=pull | |
|
150 | file:/*/$TESTTMP/repo (glob) | |
|
139 | 151 |
|
|
140 | 152 | |
|
141 | 153 | pullop.cgresult is 1 |
@@ -204,6 +216,8 b' pullop.cgresult' | |||
|
204 | 216 | HG_PENDING=$TESTTMP/clone |
|
205 | 217 | HG_SOURCE=pull |
|
206 | 218 | HG_TXNID=TXN:$ID$ |
|
219 | HG_TXNNAME=pull | |
|
220 | file:/*/$TESTTMP/repo (glob) | |
|
207 | 221 | HG_URL=file:$TESTTMP/repo |
|
208 | 222 |
|
|
209 | 223 | remote: changegroup2 |
@@ -219,6 +233,8 b' pullop.cgresult' | |||
|
219 | 233 | HG_PHASES_MOVED=1 |
|
220 | 234 | HG_SOURCE=pull |
|
221 | 235 | HG_TXNID=TXN:$ID$ |
|
236 | HG_TXNNAME=pull | |
|
237 | file:/*/$TESTTMP/repo (glob) | |
|
222 | 238 |
|
|
223 | 239 | |
|
224 | 240 | new changesets b3325c91a4d9:5cd59d311f65 |
@@ -228,6 +244,8 b' pullop.cgresult' | |||
|
228 | 244 | HG_NODE_LAST=8a5212ebc8527f9fb821601504794e3eb11a1ed3 |
|
229 | 245 | HG_SOURCE=pull |
|
230 | 246 | HG_TXNID=TXN:$ID$ |
|
247 | HG_TXNNAME=pull | |
|
248 | file:/*/$TESTTMP/repo (glob) | |
|
231 | 249 | HG_URL=file:$TESTTMP/repo |
|
232 | 250 |
|
|
233 | 251 | incoming hook: HG_HOOKNAME=incoming |
@@ -235,6 +253,8 b' pullop.cgresult' | |||
|
235 | 253 | HG_NODE=b3325c91a4d916bcc4cdc83ea3fe4ece46a42f6e |
|
236 | 254 | HG_SOURCE=pull |
|
237 | 255 | HG_TXNID=TXN:$ID$ |
|
256 | HG_TXNNAME=pull | |
|
257 | file:/*/$TESTTMP/repo (glob) | |
|
238 | 258 |
|
|
239 | 259 | |
|
240 | 260 | incoming hook: HG_HOOKNAME=incoming |
@@ -242,6 +262,8 b' pullop.cgresult' | |||
|
242 | 262 | HG_NODE=8a5212ebc8527f9fb821601504794e3eb11a1ed3 |
|
243 | 263 | HG_SOURCE=pull |
|
244 | 264 | HG_TXNID=TXN:$ID$ |
|
265 | HG_TXNNAME=pull | |
|
266 | file:/*/$TESTTMP/repo (glob) | |
|
245 | 267 | HG_URL=file:$TESTTMP/repo |
|
246 | 268 |
|
|
247 | 269 | changegroup hook: HG_HOOKNAME=changegroup |
@@ -251,6 +273,8 b' pullop.cgresult' | |||
|
251 | 273 | HG_PHASES_MOVED=1 |
|
252 | 274 | HG_SOURCE=pull |
|
253 | 275 | HG_TXNID=TXN:$ID$ |
|
276 | HG_TXNNAME=pull | |
|
277 | file:/*/$TESTTMP/repo (glob) | |
|
254 | 278 |
|
|
255 | 279 | |
|
256 | 280 | incoming hook: HG_HOOKNAME=incoming |
@@ -259,6 +283,8 b' pullop.cgresult' | |||
|
259 | 283 | HG_PHASES_MOVED=1 |
|
260 | 284 | HG_SOURCE=pull |
|
261 | 285 | HG_TXNID=TXN:$ID$ |
|
286 | HG_TXNNAME=pull | |
|
287 | file:/*/$TESTTMP/repo (glob) | |
|
262 | 288 | HG_URL=file:$TESTTMP/repo |
|
263 | 289 |
|
|
264 | 290 | incoming hook: HG_HOOKNAME=incoming |
@@ -267,6 +293,8 b' pullop.cgresult' | |||
|
267 | 293 | HG_PHASES_MOVED=1 |
|
268 | 294 | HG_SOURCE=pull |
|
269 | 295 | HG_TXNID=TXN:$ID$ |
|
296 | HG_TXNNAME=pull | |
|
297 | file:/*/$TESTTMP/repo (glob) | |
|
270 | 298 |
|
|
271 | 299 | |
|
272 | 300 | incoming hook: HG_HOOKNAME=incoming |
@@ -275,6 +303,8 b' pullop.cgresult' | |||
|
275 | 303 | HG_PHASES_MOVED=1 |
|
276 | 304 | HG_SOURCE=pull |
|
277 | 305 | HG_TXNID=TXN:$ID$ |
|
306 | HG_TXNNAME=pull | |
|
307 | file:/*/$TESTTMP/repo (glob) | |
|
278 | 308 | HG_URL=file:$TESTTMP/repo |
|
279 | 309 |
|
|
280 | 310 | pullop.cgresult is 3 |
@@ -343,6 +373,8 b' pullop.cgresult' | |||
|
343 | 373 | HG_PENDING=$TESTTMP/clone |
|
344 | 374 | HG_SOURCE=pull |
|
345 | 375 | HG_TXNID=TXN:$ID$ |
|
376 | HG_TXNNAME=pull | |
|
377 | file:/*/$TESTTMP/repo (glob) | |
|
346 | 378 |
|
|
347 | 379 | |
|
348 | 380 | remote: changegroup2 |
@@ -358,6 +390,8 b' pullop.cgresult' | |||
|
358 | 390 | HG_PHASES_MOVED=1 |
|
359 | 391 | HG_SOURCE=pull |
|
360 | 392 | HG_TXNID=TXN:$ID$ |
|
393 | HG_TXNNAME=pull | |
|
394 | file:/*/$TESTTMP/repo (glob) | |
|
361 | 395 | HG_URL=file:$TESTTMP/repo |
|
362 | 396 |
|
|
363 | 397 | new changesets 71bd7b46de72:9d18e5bd9ab0 |
@@ -367,6 +401,8 b' pullop.cgresult' | |||
|
367 | 401 | HG_NODE_LAST=71bd7b46de72e69a32455bf88d04757d542e6cf4 |
|
368 | 402 | HG_SOURCE=pull |
|
369 | 403 | HG_TXNID=TXN:$ID$ |
|
404 | HG_TXNNAME=pull | |
|
405 | file:/*/$TESTTMP/repo (glob) | |
|
370 | 406 |
|
|
371 | 407 | |
|
372 | 408 | incoming hook: HG_HOOKNAME=incoming |
@@ -374,6 +410,8 b' pullop.cgresult' | |||
|
374 | 410 | HG_NODE=71bd7b46de72e69a32455bf88d04757d542e6cf4 |
|
375 | 411 | HG_SOURCE=pull |
|
376 | 412 | HG_TXNID=TXN:$ID$ |
|
413 | HG_TXNNAME=pull | |
|
414 | file:/*/$TESTTMP/repo (glob) | |
|
377 | 415 | HG_URL=file:$TESTTMP/repo |
|
378 | 416 |
|
|
379 | 417 | changegroup hook: HG_HOOKNAME=changegroup |
@@ -383,6 +421,8 b' pullop.cgresult' | |||
|
383 | 421 | HG_PHASES_MOVED=1 |
|
384 | 422 | HG_SOURCE=pull |
|
385 | 423 | HG_TXNID=TXN:$ID$ |
|
424 | HG_TXNNAME=pull | |
|
425 | file:/*/$TESTTMP/repo (glob) | |
|
386 | 426 |
|
|
387 | 427 | |
|
388 | 428 | incoming hook: HG_HOOKNAME=incoming |
@@ -391,6 +431,8 b' pullop.cgresult' | |||
|
391 | 431 | HG_PHASES_MOVED=1 |
|
392 | 432 | HG_SOURCE=pull |
|
393 | 433 | HG_TXNID=TXN:$ID$ |
|
434 | HG_TXNNAME=pull | |
|
435 | file:/*/$TESTTMP/repo (glob) | |
|
394 | 436 |
|
|
395 | 437 | |
|
396 | 438 | pullop.cgresult is -2 |
@@ -252,6 +252,8 b' test generic hooks' | |||
|
252 | 252 | HG_HOOKTYPE=prechangegroup |
|
253 | 253 | HG_SOURCE=pull |
|
254 | 254 | HG_TXNID=TXN:$ID$ |
|
255 | HG_TXNNAME=pull | |
|
256 | file:/*/$TESTTMP/a (glob) | |
|
255 | 257 | HG_URL=file:$TESTTMP/a |
|
256 | 258 | |
|
257 | 259 | adding changesets |
@@ -265,6 +267,8 b' test generic hooks' | |||
|
265 | 267 | HG_NODE_LAST=07f3376c1e655977439df2a814e3cc14b27abac2 |
|
266 | 268 | HG_SOURCE=pull |
|
267 | 269 | HG_TXNID=TXN:$ID$ |
|
270 | HG_TXNNAME=pull | |
|
271 | file:/*/$TESTTMP/a (glob) | |
|
268 | 272 | HG_URL=file:$TESTTMP/a |
|
269 | 273 | |
|
270 | 274 | incoming hook: HG_HOOKNAME=incoming |
@@ -272,6 +276,8 b' test generic hooks' | |||
|
272 | 276 | HG_NODE=ab228980c14deea8b9555d91c9581127383e40fd |
|
273 | 277 | HG_SOURCE=pull |
|
274 | 278 | HG_TXNID=TXN:$ID$ |
|
279 | HG_TXNNAME=pull | |
|
280 | file:/*/$TESTTMP/a (glob) | |
|
275 | 281 | HG_URL=file:$TESTTMP/a |
|
276 | 282 | |
|
277 | 283 | incoming hook: HG_HOOKNAME=incoming |
@@ -279,6 +285,8 b' test generic hooks' | |||
|
279 | 285 | HG_NODE=ee9deb46ab31e4cc3310f3cf0c3d668e4d8fffc2 |
|
280 | 286 | HG_SOURCE=pull |
|
281 | 287 | HG_TXNID=TXN:$ID$ |
|
288 | HG_TXNNAME=pull | |
|
289 | file:/*/$TESTTMP/a (glob) | |
|
282 | 290 | HG_URL=file:$TESTTMP/a |
|
283 | 291 | |
|
284 | 292 | incoming hook: HG_HOOKNAME=incoming |
@@ -286,6 +294,8 b' test generic hooks' | |||
|
286 | 294 | HG_NODE=07f3376c1e655977439df2a814e3cc14b27abac2 |
|
287 | 295 | HG_SOURCE=pull |
|
288 | 296 | HG_TXNID=TXN:$ID$ |
|
297 | HG_TXNNAME=pull | |
|
298 | file:/*/$TESTTMP/a (glob) | |
|
289 | 299 | HG_URL=file:$TESTTMP/a |
|
290 | 300 | |
|
291 | 301 | (run 'hg update' to get a working copy) |
@@ -543,6 +553,7 b' pushkey hook' | |||
|
543 | 553 | HG_PUSHKEYCOMPAT=1 |
|
544 | 554 | HG_SOURCE=push |
|
545 | 555 | HG_TXNID=TXN:$ID$ |
|
556 | HG_TXNNAME=push | |
|
546 | 557 | HG_URL=file:$TESTTMP/a |
|
547 | 558 | |
|
548 | 559 | txnclose hook: HG_BOOKMARK_MOVED=1 |
@@ -629,6 +640,7 b' test that prepushkey can prevent incomin' | |||
|
629 | 640 | HG_PUSHKEYCOMPAT=1 |
|
630 | 641 | HG_SOURCE=push |
|
631 | 642 | HG_TXNID=TXN:$ID$ |
|
643 | HG_TXNNAME=push | |
|
632 | 644 | HG_URL=file:$TESTTMP/a |
|
633 | 645 | |
|
634 | 646 | abort: prepushkey hook exited with status 1 |
@@ -687,6 +699,8 b' prechangegroup hook can prevent incoming' | |||
|
687 | 699 | HG_HOOKTYPE=prechangegroup |
|
688 | 700 | HG_SOURCE=pull |
|
689 | 701 | HG_TXNID=TXN:$ID$ |
|
702 | HG_TXNNAME=pull | |
|
703 | file:/*/$TESTTMP/a (glob) | |
|
690 | 704 | HG_URL=file:$TESTTMP/a |
|
691 | 705 |
|
|
692 | 706 | abort: prechangegroup.forbid hook exited with status 1 |
@@ -715,6 +729,8 b' incoming changes no longer there after' | |||
|
715 | 729 | HG_PENDING=$TESTTMP/b |
|
716 | 730 | HG_SOURCE=pull |
|
717 | 731 | HG_TXNID=TXN:$ID$ |
|
732 | HG_TXNNAME=pull | |
|
733 | file:/*/$TESTTMP/a (glob) | |
|
718 | 734 | HG_URL=file:$TESTTMP/a |
|
719 | 735 | |
|
720 | 736 | transaction abort! |
@@ -167,6 +167,8 b' pull' | |||
|
167 | 167 | HG_NODE_LAST=5fed3813f7f5e1824344fdc9cf8f63bb662c292d |
|
168 | 168 | HG_SOURCE=pull |
|
169 | 169 | HG_TXNID=TXN:$ID$ |
|
170 | HG_TXNNAME=pull | |
|
171 | http://localhost:$HGPORT1/ | |
|
170 | 172 |
|
|
171 | 173 | |
|
172 | 174 | (run 'hg update' to get a working copy) |
@@ -156,6 +156,8 b' pull' | |||
|
156 | 156 | HG_NODE_LAST=5fed3813f7f5e1824344fdc9cf8f63bb662c292d |
|
157 | 157 | HG_SOURCE=pull |
|
158 | 158 | HG_TXNID=TXN:$ID$ |
|
159 | HG_TXNNAME=pull | |
|
160 | http://localhost:$HGPORT1/ | |
|
159 | 161 |
|
|
160 | 162 | |
|
161 | 163 | (run 'hg update' to get a working copy) |
@@ -232,6 +232,8 b' pull without cacert' | |||
|
232 | 232 | HG_NODE_LAST=5fed3813f7f5e1824344fdc9cf8f63bb662c292d |
|
233 | 233 | HG_SOURCE=pull |
|
234 | 234 | HG_TXNID=TXN:$ID$ |
|
235 | HG_TXNNAME=pull | |
|
236 | https://localhost:$HGPORT/ | |
|
235 | 237 |
|
|
236 | 238 | |
|
237 | 239 | (run 'hg update' to get a working copy) |
@@ -101,6 +101,8 b' expect success' | |||
|
101 | 101 | remote: HG_NODE_LAST=ba677d0156c1196c1a699fa53f390dcfc3ce3872 |
|
102 | 102 | remote: HG_SOURCE=serve |
|
103 | 103 | remote: HG_TXNID=TXN:$ID$ |
|
104 | remote: HG_TXNNAME=serve | |
|
105 | remote: remote:http:$LOCALIP: (glob) | |
|
104 | 106 |
|
|
105 | 107 | remote: |
|
106 | 108 | % serve errors |
@@ -128,6 +130,8 b' expect success' | |||
|
128 | 130 | remote: HG_NODE_LAST=ba677d0156c1196c1a699fa53f390dcfc3ce3872 |
|
129 | 131 | remote: HG_SOURCE=serve |
|
130 | 132 | remote: HG_TXNID=TXN:$ID$ |
|
133 | remote: HG_TXNNAME=serve | |
|
134 | remote: remote:http:$LOCALIP: (glob) | |
|
131 | 135 |
|
|
132 | 136 | remote: |
|
133 | 137 | % serve errors |
@@ -159,6 +163,7 b' expect success' | |||
|
159 | 163 | remote: HG_NODE_LAST=ba677d0156c1196c1a699fa53f390dcfc3ce3872 |
|
160 | 164 | remote: HG_SOURCE=serve |
|
161 | 165 | remote: HG_TXNID=TXN:$ID$ |
|
166 | remote: HG_TXNNAME=serve | |
|
162 | 167 |
|
|
163 | 168 | remote: |
|
164 | 169 | % serve errors |
@@ -187,6 +192,8 b' expect success, server lacks the httphea' | |||
|
187 | 192 | remote: HG_NODE_LAST=ba677d0156c1196c1a699fa53f390dcfc3ce3872 |
|
188 | 193 | remote: HG_SOURCE=serve |
|
189 | 194 | remote: HG_TXNID=TXN:$ID$ |
|
195 | remote: HG_TXNNAME=serve | |
|
196 | remote: remote:http:$LOCALIP: (glob) (no-bundle2 !) | |
|
190 | 197 |
|
|
191 | 198 | remote: |
|
192 | 199 | % serve errors |
@@ -214,6 +221,8 b' expect success, server lacks the unbundl' | |||
|
214 | 221 | remote: HG_NODE_LAST=ba677d0156c1196c1a699fa53f390dcfc3ce3872 |
|
215 | 222 | remote: HG_SOURCE=serve |
|
216 | 223 | remote: HG_TXNID=TXN:$ID$ |
|
224 | remote: HG_TXNNAME=serve | |
|
225 | remote: remote:http:$LOCALIP: (glob) (no-bundle2 !) | |
|
217 | 226 |
|
|
218 | 227 | remote: |
|
219 | 228 | % serve errors |
@@ -253,6 +262,8 b' has no parameter' | |||
|
253 | 262 | remote: HG_NODE_LAST=ba677d0156c1196c1a699fa53f390dcfc3ce3872 |
|
254 | 263 | remote: HG_SOURCE=serve |
|
255 | 264 | remote: HG_TXNID=TXN:$ID$ |
|
265 | remote: HG_TXNNAME=serve | |
|
266 | remote: remote:http:$LOCALIP: (glob) (no-bundle2 !) | |
|
256 | 267 |
|
|
257 | 268 | remote: |
|
258 | 269 | % serve errors |
@@ -312,6 +323,7 b' and fails the entire push.' | |||
|
312 | 323 | remote: HG_PHASES_MOVED=1 |
|
313 | 324 | remote: HG_SOURCE=serve |
|
314 | 325 | remote: HG_TXNID=TXN:$ID$ |
|
326 | remote: HG_TXNNAME=serve | |
|
315 | 327 | remote: HG_URL=remote:http:$LOCALIP: (glob) |
|
316 | 328 | remote: |
|
317 | 329 | remote: pushkey-abort: prepushkey hook exited with status 1 |
@@ -353,6 +365,7 b" We don't need to test bundle1 because it" | |||
|
353 | 365 | remote: HG_PHASES_MOVED=1 |
|
354 | 366 | remote: HG_SOURCE=serve |
|
355 | 367 | remote: HG_TXNID=TXN:$ID$ |
|
368 | remote: HG_TXNNAME=serve | |
|
356 | 369 | remote: HG_URL=remote:http:$LOCALIP: (glob) |
|
357 | 370 | remote: |
|
358 | 371 | % serve errors |
@@ -411,6 +424,7 b' Now do a variant of the above, except on' | |||
|
411 | 424 | remote: HG_PHASES_MOVED=1 |
|
412 | 425 | remote: HG_SOURCE=serve |
|
413 | 426 | remote: HG_TXNID=TXN:$ID$ |
|
427 | remote: HG_TXNNAME=serve | |
|
414 | 428 | remote: HG_URL=remote:http:$LOCALIP: (glob) |
|
415 | 429 | remote: |
|
416 | 430 | remote: pushkey-abort: prepushkey hook exited with status 1 |
@@ -465,6 +479,7 b' Make phases updates work' | |||
|
465 | 479 | remote: HG_PHASES_MOVED=1 |
|
466 | 480 | remote: HG_SOURCE=serve |
|
467 | 481 | remote: HG_TXNID=TXN:$ID$ |
|
482 | remote: HG_TXNNAME=serve | |
|
468 | 483 | remote: HG_URL=remote:http:$LOCALIP: (glob) |
|
469 | 484 | remote: |
|
470 | 485 | % serve errors |
@@ -520,6 +520,8 b' debug output' | |||
|
520 | 520 | HG_NODE_LAST=a28a9d1a809cab7d4e2fde4bee738a9ede948b60 |
|
521 | 521 | HG_SOURCE=serve |
|
522 | 522 | HG_TXNID=TXN:$ID$ |
|
523 | HG_TXNNAME=serve | |
|
524 | remote:ssh:$LOCALIP | |
|
523 | 525 | HG_URL=remote:ssh:$LOCALIP |
|
524 | 526 | |
|
525 | 527 | Got arguments 1:user@dummy 2:hg -R remote serve --stdio |
@@ -537,6 +539,8 b' debug output' | |||
|
537 | 539 | HG_NODE_LAST=1383141674ec756a6056f6a9097618482fe0f4a6 |
|
538 | 540 | HG_SOURCE=serve |
|
539 | 541 | HG_TXNID=TXN:$ID$ |
|
542 | HG_TXNNAME=serve | |
|
543 | remote:ssh:$LOCALIP | |
|
540 | 544 | HG_URL=remote:ssh:$LOCALIP |
|
541 | 545 | |
|
542 | 546 | Got arguments 1:user@dummy 2:hg -R remote serve --stdio |
@@ -552,6 +556,8 b' debug output' | |||
|
552 | 556 | HG_NODE_LAST=65c38f4125f9602c8db4af56530cc221d93b8ef8 |
|
553 | 557 | HG_SOURCE=serve |
|
554 | 558 | HG_TXNID=TXN:$ID$ |
|
559 | HG_TXNNAME=serve | |
|
560 | remote:ssh:$LOCALIP | |
|
555 | 561 | HG_URL=remote:ssh:$LOCALIP |
|
556 | 562 | |
|
557 | 563 | Got arguments 1:user@dummy 2:hg -R remote serve --stdio |
@@ -570,6 +570,7 b' debug output' | |||
|
570 | 570 | HG_NODE_LAST=a28a9d1a809cab7d4e2fde4bee738a9ede948b60 |
|
571 | 571 | HG_SOURCE=serve |
|
572 | 572 | HG_TXNID=TXN:$ID$ |
|
573 | HG_TXNNAME=serve | |
|
573 | 574 | HG_URL=remote:ssh:$LOCALIP |
|
574 | 575 | |
|
575 | 576 | Got arguments 1:user@dummy 2:hg -R remote serve --stdio |
@@ -588,6 +589,7 b' debug output' | |||
|
588 | 589 | HG_NODE_LAST=1383141674ec756a6056f6a9097618482fe0f4a6 |
|
589 | 590 | HG_SOURCE=serve |
|
590 | 591 | HG_TXNID=TXN:$ID$ |
|
592 | HG_TXNNAME=serve | |
|
591 | 593 | HG_URL=remote:ssh:$LOCALIP |
|
592 | 594 | |
|
593 | 595 | Got arguments 1:user@dummy 2:chg -R remote serve --stdio (chg !) |
@@ -598,6 +600,7 b' debug output' | |||
|
598 | 600 | HG_NODE_LAST=1383141674ec756a6056f6a9097618482fe0f4a6 (chg !) |
|
599 | 601 | HG_SOURCE=serve (chg !) |
|
600 | 602 | HG_TXNID=TXN:$ID$ (chg !) |
|
603 | HG_TXNNAME=serve (chg !) | |
|
601 | 604 | HG_URL=remote:ssh:$LOCALIP (chg !) |
|
602 | 605 | (chg !) |
|
603 | 606 | Got arguments 1:user@dummy 2:hg -R remote serve --stdio |
@@ -614,6 +617,7 b' debug output' | |||
|
614 | 617 | HG_NODE_LAST=65c38f4125f9602c8db4af56530cc221d93b8ef8 |
|
615 | 618 | HG_SOURCE=serve |
|
616 | 619 | HG_TXNID=TXN:$ID$ |
|
620 | HG_TXNNAME=serve | |
|
617 | 621 | HG_URL=remote:ssh:$LOCALIP |
|
618 | 622 | |
|
619 | 623 | Got arguments 1:user@dummy 2:hg -R remote serve --stdio |
@@ -73,6 +73,8 b' check for HTTP opener failures when cach' | |||
|
73 | 73 | HG_NODE_LAST=4ac2e3648604439c580c69b09ec9d93a88d93432 |
|
74 | 74 | HG_SOURCE=pull |
|
75 | 75 | HG_TXNID=TXN:$ID$ |
|
76 | HG_TXNNAME=pull | |
|
77 | http://localhost:$HGPORT/remote | |
|
76 | 78 |
|
|
77 | 79 | |
|
78 | 80 | (run 'hg update' to get a working copy) |
General Comments 0
You need to be logged in to leave comments.
Login now