Show More
@@ -122,7 +122,8 b' def _exthook(ui, repo, name, cmd, args, ' | |||||
122 | # make in-memory changes visible to external process |
|
122 | # make in-memory changes visible to external process | |
123 | tr = repo.currenttransaction() |
|
123 | tr = repo.currenttransaction() | |
124 | repo.dirstate.write(tr) |
|
124 | repo.dirstate.write(tr) | |
125 | if tr and tr.writepending(): |
|
125 | if tr: | |
|
126 | tr.writepending() | |||
126 | env['HG_PENDING'] = repo.root |
|
127 | env['HG_PENDING'] = repo.root | |
127 |
|
128 | |||
128 | for k, v in args.iteritems(): |
|
129 | for k, v in args.iteritems(): |
@@ -113,7 +113,7 b' test generic hooks' | |||||
113 | $ hg pull ../a |
|
113 | $ hg pull ../a | |
114 | pulling from ../a |
|
114 | pulling from ../a | |
115 | searching for changes |
|
115 | searching for changes | |
116 | prechangegroup hook: HG_SOURCE=pull HG_TXNID=TXN:* HG_URL=file:$TESTTMP/a (glob) |
|
116 | prechangegroup hook: HG_PENDING=$TESTTMP/b HG_SOURCE=pull HG_TXNID=TXN:* HG_URL=file:$TESTTMP/a (glob) | |
117 | adding changesets |
|
117 | adding changesets | |
118 | adding manifests |
|
118 | adding manifests | |
119 | adding file changes |
|
119 | adding file changes | |
@@ -272,7 +272,7 b' test that prepushkey can prevent incomin' | |||||
272 | listkeys hook: HG_NAMESPACE=bookmarks HG_VALUES={'bar': '0000000000000000000000000000000000000000', 'foo': '0000000000000000000000000000000000000000'} |
|
272 | listkeys hook: HG_NAMESPACE=bookmarks HG_VALUES={'bar': '0000000000000000000000000000000000000000', 'foo': '0000000000000000000000000000000000000000'} | |
273 | no changes found |
|
273 | no changes found | |
274 | pretxnopen hook: HG_TXNID=TXN:* HG_TXNNAME=push (glob) |
|
274 | pretxnopen hook: HG_TXNID=TXN:* HG_TXNNAME=push (glob) | |
275 | prepushkey.forbid hook: HG_BUNDLE2=1 HG_KEY=baz HG_NAMESPACE=bookmarks HG_NEW=0000000000000000000000000000000000000000 HG_SOURCE=push HG_TXNID=TXN:* HG_URL=push (glob) |
|
275 | prepushkey.forbid hook: HG_BUNDLE2=1 HG_KEY=baz HG_NAMESPACE=bookmarks HG_NEW=0000000000000000000000000000000000000000 HG_PENDING=$TESTTMP/a HG_SOURCE=push HG_TXNID=TXN:* HG_URL=push (glob) | |
276 | pushkey-abort: prepushkey hook exited with status 1 |
|
276 | pushkey-abort: prepushkey hook exited with status 1 | |
277 | abort: exporting bookmark baz failed! |
|
277 | abort: exporting bookmark baz failed! | |
278 | [255] |
|
278 | [255] | |
@@ -306,7 +306,7 b' prechangegroup hook can prevent incoming' | |||||
306 | $ hg pull ../a |
|
306 | $ hg pull ../a | |
307 | pulling from ../a |
|
307 | pulling from ../a | |
308 | searching for changes |
|
308 | searching for changes | |
309 | prechangegroup.forbid hook: HG_SOURCE=pull HG_TXNID=TXN:* HG_URL=file:$TESTTMP/a (glob) |
|
309 | prechangegroup.forbid hook: HG_PENDING=$TESTTMP/b HG_SOURCE=pull HG_TXNID=TXN:* HG_URL=file:$TESTTMP/a (glob) | |
310 | abort: prechangegroup.forbid hook exited with status 1 |
|
310 | abort: prechangegroup.forbid hook exited with status 1 | |
311 | [255] |
|
311 | [255] | |
312 |
|
312 |
General Comments 0
You need to be logged in to leave comments.
Login now