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

File last commit:

r2088:f16435b4 default
r2423:f328e8ae merge 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