##// END OF EJS Templates
patch: rewrite diffstat with util.filter()...
patch: rewrite diffstat with util.filter() Simpler and works under Windows.

File last commit:

r7080:a6477aa8 default
r7267:6a51ca1e 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/*