##// END OF EJS Templates
Minor typo change to reflect actual values used.
Minor typo change to reflect actual values used.

File last commit:

r2088:f16435b4 default
r2338:391c5d0f default
Show More
test-hup
16 lines | 146 B | text/plain | TextLexer
#!/bin/sh
hg init
mkfifo p
hg serve --stdio < p &
P=$!
(echo lock; echo addchangegroup; sleep 5) > p &
Q=$!
sleep 1
kill -HUP $P
wait
ls .hg