##// END OF EJS Templates
Show remote client output with "remote:"
Show remote client output with "remote:"

File last commit:

r642:5d6177b7 default
r646:342927da default
Show More
test-hup
16 lines | 149 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
sleep 1
ls .hg