##// END OF EJS Templates
Unify mq and hg patch invocation....
Unify mq and hg patch invocation. This makes patch a little less verbose by default, so the tests had to be updated.

File last commit:

r2529:94198553 default
r2919:b70740ae 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 3
kill -HUP $P
wait
ls .hg