##// END OF EJS Templates
switch to the .hg/store layout, fix the tests
switch to the .hg/store layout, fix the tests

File last commit:

r3853:c0b44915 default
r3853:c0b44915 default
Show More
test-hup
16 lines | 149 B | text/plain | TextLexer
Matt Mackall
Update tests
r642 #!/bin/sh
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
Benoit Boissinot
switch to the .hg/store layout, fix the tests
r3853 ls -R .hg
Matt Mackall
Update tests
r642