##// END OF EJS Templates
merge with stable
merge with stable

File last commit:

r7080:a6477aa8 default
r12315:ca58f647 merge default
Show More
test-hup
15 lines | 194 B | text/plain | TextLexer
Matt Mackall
Update tests
r642 #!/bin/sh
Patrick Mezard
tests: Windows compatibility fixes...
r7080 "$TESTDIR/hghave" fifo || exit 80
Matt Mackall
Update tests
r642 hg init
mkfifo p
hg serve --stdio < p &
P=$!
(echo lock; echo addchangegroup; sleep 5) > p &
Q=$!
Sascha Wilde
Some systems are slower ... give 'em some time/
r2529 sleep 3
Matt Mackall
Update tests
r642 kill -HUP $P
Thomas Arendsen Hein
Exit test-hup only after the background process has died....
r2088 wait
Thomas Arendsen Hein
Fix test-hup for different output of ls on at least MacOS X and Solaris 8.
r3918 echo .hg/* .hg/store/*