Skip to content
Snippets Groups Projects
Commit 452795b0 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

test: clarify some output in `test-transaction-rollback-on-sigpipe`

We don't want a dirty transaction to remain, but need to check the transaction
was aborted. Otherwise it is easy to have no abandoned transaction if the
transaction succeed.

Differential Revision: https://phab.mercurial-scm.org/D10945
parent c8f8d2db
No related branches found
No related tags found
No related merge requests found
......@@ -50,9 +50,11 @@
> pretxnchangegroup.break-things=$hook_script
> EOF
$ hg --cwd ./remote tip -T '{node|short}\n'
000000000000
$ cd local
$ echo foo > foo ; hg commit -qAm "commit"
$ hg push -q -e "\"$PYTHON\" \"$TESTDIR/dummyssh\"" --remotecmd $remotecmd 2>&1 | grep -v $killable_pipe
abort: stream ended unexpectedly (got 0 bytes, expected 4)
The remote should be left in a good state
......@@ -53,9 +55,11 @@
$ cd local
$ echo foo > foo ; hg commit -qAm "commit"
$ hg push -q -e "\"$PYTHON\" \"$TESTDIR/dummyssh\"" --remotecmd $remotecmd 2>&1 | grep -v $killable_pipe
abort: stream ended unexpectedly (got 0 bytes, expected 4)
The remote should be left in a good state
$ hg --cwd ../remote tip -T '{node|short}\n'
000000000000
$ hg --cwd ../remote recover
no interrupted transaction available
[1]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment