##// END OF EJS Templates
demandimport: fix import x.y.z as a when x.y is already imported.
demandimport: fix import x.y.z as a when x.y is already imported.

File last commit:

r3918:a413f5c2 default
r3921:6d0d025e 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 3
kill -HUP $P
wait
ls -R .hg