view tests/test-hup @ 2492:2f4addf56715

Test case for #295
author Brendan Cully <brendan@kublai.com>
date Fri, 23 Jun 2006 17:21:04 -0700
parents f16435b45780
children 9419855309cd
line wrap: on
line source

#!/bin/sh

hg init
mkfifo p

hg serve --stdio < p &
P=$!
(echo lock; echo addchangegroup; sleep 5) > p &
Q=$!
sleep 1
kill -HUP $P
wait
ls .hg