sapling/tests/test-hup

14 lines
159 B
Plaintext
Raw Normal View History

2005-07-07 10:27:25 +04:00
#!/bin/sh
hg init
mkfifo p
hg serve --stdio < p &
P=$!
(echo lock; echo addchangegroup; sleep 5) > p &
Q=$!
sleep 3
2005-07-07 10:27:25 +04:00
kill -HUP $P
wait
echo .hg/* .hg/store/*