author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
Thu, 14 Dec 2006 23:51:41 +0100 | |
changeset 3896 | 3b628b5da9e9 |
parent 3853 | c0b449154a90 |
child 3918 | a413f5c29c46 |
permissions | -rwxr-xr-x |
642 | 1 |
#!/bin/sh |
2 |
||
3 |
hg init |
|
4 |
mkfifo p |
|
5 |
||
6 |
hg serve --stdio < p & |
|
7 |
P=$! |
|
8 |
(echo lock; echo addchangegroup; sleep 5) > p & |
|
9 |
Q=$! |
|
2529
9419855309cd
Some systems are slower ... give 'em some time/
Sascha Wilde <wilde@sha-bang.de>
parents:
2088
diff
changeset
|
10 |
sleep 3 |
642 | 11 |
kill -HUP $P |
2088
f16435b45780
Exit test-hup only after the background process has died.
Thomas Arendsen Hein <thomas@intevation.de>
parents:
814
diff
changeset
|
12 |
wait |
3853
c0b449154a90
switch to the .hg/store layout, fix the tests
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
2529
diff
changeset
|
13 |
ls -R .hg |
642 | 14 |
|
15 |
||
16 |