##// END OF EJS Templates
Merge with crew-stable
Merge with crew-stable

File last commit:

r7080:a6477aa8 default
r8166:56719b1a merge default
Show More
test-hup
15 lines | 194 B | text/plain | TextLexer
#!/bin/sh
"$TESTDIR/hghave" fifo || exit 80
hg init
mkfifo p
hg serve --stdio < p &
P=$!
(echo lock; echo addchangegroup; sleep 5) > p &
Q=$!
sleep 3
kill -HUP $P
wait
echo .hg/* .hg/store/*