##// END OF EJS Templates
fix speed regression in mdiff caused by line split bugfix.
fix speed regression in mdiff caused by line split bugfix.

File last commit:

r2088:f16435b4 default
r2251:35fb62a3 0.9 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