annotate tests/test-hup.t @ 12573:be4b0a397470
tests: show skip reason instead of "irrelevant" with unified tests, too
parsehghaveoutput expects just the test output, not the merged test/output,
so for skipped unified tests e.g.:
Skipped test-convert-darcs.t: missing feature: irrelevant
was shown instead of:
Skipped test-convert-darcs.t: missing feature: darcs client
author |
Thomas Arendsen Hein <thomas@intevation.de> |
date |
Mon, 27 Sep 2010 22:49:30 +0200 |
parents |
f8dc83689f19 |
children |
89e7d35e0ef0 |
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/*
|
|
20 .hg/00changelog.i .hg/journal.branch .hg/journal.desc .hg/journal.dirstate .hg/requires .hg/store .hg/store/00changelog.i .hg/store/00changelog.i.a
|