Mercurial > hg
annotate tests/test-hup.t @ 15164:7bddec632821
patchbomb: make it easy for the user to decline sending an intro message.
- prompt(): respect interactive mode; clarify logic a bit
- rename introneeded() to introwanted() and give it only one caller
- add 'numbered' arg to makepatch() so it does not need to call
introwanted()
- factor makeintro() out of getpatchmsgs(), so it's easier to skip the
intro message based on the user's behaviour
Unexpected but perfectly reasonable side effect: in non-interactive
mode, we don't show unanswerable "Cc" or "From" prompts anymore, so
remove those from the test expectations.
author | Greg Ward <greg@gerg.ca> |
---|---|
date | Tue, 27 Sep 2011 22:38:47 -0400 |
parents | 89e7d35e0ef0 |
children | c5c9ca3719f9 |
rev | line source |
---|---|
12413 | 1 Test hangup signal in the middle of transaction |
642 | 2 |
12413 | 3 $ "$TESTDIR/hghave" fifo || exit 80 |
4 $ hg init | |
5 $ mkfifo p | |
6 $ hg serve --stdio < p & | |
7 $ P=$! | |
8 $ (echo lock; echo addchangegroup; sleep 5) > p & | |
9 $ Q=$! | |
10 $ sleep 3 | |
11 0 | |
12 0 | |
13 adding changesets | |
14 $ kill -HUP $P | |
15 $ wait | |
16 transaction abort! | |
17 rollback completed | |
18 killed! | |
19 $ echo .hg/* .hg/store/* | |
14266
89e7d35e0ef0
fix bookmarks rollback behavior
Alexander Solovyov <alexander@solovyov.net>
parents:
12413
diff
changeset
|
20 .hg/00changelog.i .hg/journal.bookmarks .hg/journal.branch .hg/journal.desc .hg/journal.dirstate .hg/requires .hg/store .hg/store/00changelog.i .hg/store/00changelog.i.a |